提交记录 27903
提交时间 |
评测时间 |
2025-02-12 11:27:05 |
2025-02-12 11:27:10 |
#include<bits/stdc++.h>
void sort(unsigned *a, int n) {
int *cnt = (int *)malloc(130000 * (sizeof(int)));
memset(cnt, 0, 130000 * (sizeof(int)));
for (int i = 0; i < n; i++) {
cnt[a[i]]++;
}
for (int i = 1; i < 130000; i++) {
cnt[i] += cnt[i - 1];
}
for (int i = 0; i < 130000; i++) {
for (int j = 1; j <= cnt[i] - (i ? cnt[i - 1] : 0); j++) {
a[cnt[i] - j] = i;
}
}
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 78.43 us | 540 KB | Runtime Error | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2025-04-05 05:44:55 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠