提交记录 27769


用户 题目 状态 得分 用时 内存 语言 代码长度
Izumi_Sagiri wc2017b1. 【WC2017】挑战-任务1 Time Limit Exceeded 67 3 s 1562524 KB C++ 1.13 KB
提交时间 评测时间
2025-01-20 00:28:34 2025-01-20 00:28:41
#include <iostream>
#include <vector>

void countingSort(unsigned* a, int n, int byteIndex) {
    std::vector<unsigned> output(n);  // Output array
    std::vector<int> count(256, 0);   // Count array (for byte values 0-255)

    // Counting frequency of each byte
    for (int i = 0; i < n; ++i) {
        int byte = (a[i] >> (byteIndex * 8)) & 0xFF; // Extract the byte we are sorting on
        count[byte]++;
    }

    // Calculate the prefix sum for the count array
    for (int i = 1; i < 256; ++i) {
        count[i] += count[i - 1];
    }

    // Build the output array using the count array
    for (int i = n - 1; i >= 0; --i) {
        int byte = (a[i] >> (byteIndex * 8)) & 0xFF;
        output[count[byte] - 1] = a[i];
        count[byte]--;
    }

    // Copy the sorted output array back into the original array
    for (int i = 0; i < n; ++i) {
        a[i] = output[i];
    }
}

void radixSort(unsigned* a, int n) {
    // Perform Counting Sort for each byte (from LSB to MSB)
    for (int byteIndex = 0; byteIndex < 4; ++byteIndex) {
        countingSort(a, n, byteIndex);
    }
}

void sort(unsigned* a, int n) {
    radixSort(a, n);
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #11.536 ms812 KBAcceptedScore: 34

Testcase #21.668 s762 MB + 992 KBAcceptedScore: 33

Testcase #33 s1525 MB + 924 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2025-04-05 23:34:00 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠