提交记录 27770


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

// Helper function to perform counting sort based on a specific bit
void countingSort(unsigned *a, int n, int exp) {
    std::vector<unsigned> output(n);  // Output array
    int count[256] = {0};  // Counting array for 256 values (byte range)

    // Counting occurrences of digits (based on exp)
    for (int i = 0; i < n; i++) {
        count[(a[i] >> exp) & 0xFF]++;
    }

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

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

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

// Main Radix Sort function
void sort(unsigned *a, int n) {
    // Perform radix sort for each byte (32-bit unsigned int has 4 bytes)
    for (int exp = 0; exp < 32; exp += 8) {
        countingSort(a, n, exp);
    }
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #11.42 ms808 KBAcceptedScore: 34

Testcase #21.596 s762 MB + 992 KBAcceptedScore: 33

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


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