提交记录 22055


用户 题目 状态 得分 用时 内存 语言 代码长度
LEE114514 1001b. 测测你的排序3 Accepted 100 35.486 s 1048588 KB C++ 420 B
提交时间 评测时间
2024-07-30 19:38:10 2024-07-30 19:38:50
#include <cstdlib>
void sort(unsigned* a,int n) {
	unsigned* b=(unsigned*)malloc(n<<2);
	static unsigned cnt[1<<8];
	int sum=0;	
	unsigned *x=a,*y=b,*tmp;
	for(int i=0;i<32;i+=8){
		sum=0;
		for(int j=0;j<256;++j) cnt[j]=0;
		for(int j=0;j<n;++j) ++cnt[x[j]>>i & 0xff];
		for(int j=0;j<256;++j) sum+=cnt[j],cnt[j]=sum-cnt[j];
		for(int j=0;j<n;++j) y[cnt[x[j]>>i & 0xff]++]=x[j];
		tmp=y;
		y=x;
		x=tmp;
	}
	delete b;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #135.486 s1024 MB + 12 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-12-05 10:31:10 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠