提交记录 27912
用户 |
题目 |
状态 |
得分 |
用时 |
内存 |
语言 |
代码长度 |
LEFt |
1001c. 测测你的排序4 |
Wrong Answer |
0 |
966.804 ms |
526632 KB |
C++ |
578 B |
提交时间 |
评测时间 |
2025-02-12 11:52:17 |
2025-02-12 11:52:23 |
#include<bits/stdc++.h>
using namespace std;
void sort(unsigned *a, int n) {
array<int, 65540> cnt {};
unsigned *aa = (unsigned *)malloc(n * sizeof(unsigned));
for (int i = 0; i < n; i++) {
cnt[a[i] & 65536]++;
}
for (int i = 1; i < 65536; i++) {
cnt[i] += cnt[i - 1];
}
for (int i = n - 1; ~i; i--) {
aa[--cnt[a[i] & 65535]] = a[i];
}
cnt.fill(0);
for (int i = 0; i < n; i++) {
cnt[aa[i] >> 16]++;
}
for (int i = 1; i < 65536; i++) {
cnt[i] += cnt[i - 1];
}
for (int i = n - 1; ~i; i--) {
a[--cnt[aa[i] >> 16]] = aa[i];
}
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 966.804 ms | 514 MB + 296 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2025-04-05 05:29:37 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠