提交记录 21393


用户 题目 状态 得分 用时 内存 语言 代码长度
jcer114514 1001. 测测你的排序 Accepted 100 747.751 ms 781292 KB C++ 1.11 KB
提交时间 评测时间
2024-03-18 16:52:33 2024-03-18 16:52:38
#pragma GCC optimize("Ofast,inline,unroll-loops")
#include <bits/stdc++.h>
#include <immintrin.h>

using namespace std;

const int n = 1e8;

template<class T>
void F(uint* __restrict__ buc, uint* __restrict__ a, uint* __restrict__ b, T lambda) {
    for (int i = 0; i < n; i += 16) {
        _mm_prefetch(&a[i + 256], _MM_HINT_NTA);
        #pragma GCC unroll 16
        for (int j = 0; j < 16; j++)
            b[buc[lambda(a[i + j])]++] = a[i + j];
    }
}
void sort(uint* a, int __n) {
    uint buc[4][256] = {};
    uint* b = (uint*)malloc(n * sizeof(uint));
    for (int i = 0; i < n; i++) {
        buc[0][a[i] & 255]++;
        buc[1][a[i] >> 8 & 255]++;
        buc[2][a[i] >> 16 & 255]++;
        buc[3][(a[i] >> 16) >> 8 & 255]++;
    }
    for (int k = 0; k < 4; k++) {
        uint32_t offset = 0;
        for (int i = 0; i < 256; i++)
            swap(buc[k][i], offset), offset += buc[k][i];
    }
    F(buc[0], a, b, [](uint x) { return x & 255; });
    F(buc[1], b, a, [](uint x) { return x >> 8 & 255; });
    F(buc[2], a, b, [](uint x) { return x >> 16 & 255; });
    F(buc[3], b, a, [](uint x) { return x >> 24; });
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #1747.751 ms762 MB + 1004 KBAcceptedScore: 100


Judge Duck Online | 评测鸭在线
Server Time: 2024-05-08 04:03:26 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用