提交记录 27839
提交时间 |
评测时间 |
2025-01-27 17:01:52 |
2025-01-27 17:01:57 |
#pragma optimize("unroll-loops")
typedef unsigned u32;
u32 cnt1[1 << 8], cnt2[1 << 8], cnt3[1 << 8], cnt4[1 << 8];
void sort(unsigned *a, int n)
{
u32 *tmp = new u32[n];
u32 *end= a + n;
for (register u32 *i = a; i != a + n; i++)
++cnt1[*i & 0xff],
++cnt2[(*i >> 8) & 0xff],
++cnt3[(*i >> 16) & 0xff],
++cnt4[*i >> 24];
for(register u32 *i = cnt1 + 1, *j = cnt2 + 1, *k = cnt3 + 1, *l = cnt4 + 1; i <= cnt1 + 0xff; ++i, ++j, ++k, ++l)
*i += *(i - 1),
*j += *(j - 1),
*k += *(k - 1),
*l += *(l - 1);
for(register u32 *i= end - 1; i != a - 1; --i)
tmp[--cnt1[*i & 0xff]] = *i;
for(register u32 *i= tmp + n - 1; i != tmp - 1; --i)
a[--cnt2[(*i >> 8) & 0xff]] = *i;
for(register u32 *i= end - 1; i != a - 1; --i)
tmp[--cnt3[(*i >> 16) & 0xff]] = *i;
for(register u32 *i= tmp + n - 1; i != tmp - 1; --i)
a[--cnt4[*i >> 24]] = *i;
delete[] tmp;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 1.028 ms | 804 KB | Accepted | Score: 34 | 显示更多 |
Testcase #2 | 1.125 s | 762 MB + 988 KB | Accepted | Score: 33 | 显示更多 |
Testcase #3 | 2.251 s | 1525 MB + 924 KB | Accepted | Score: 33 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2025-04-05 13:51:54 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠