提交记录 27905


用户 题目 状态 得分 用时 内存 语言 代码长度
LEFt 1001c. 测测你的排序4 Runtime Error 0 84.36 us 540 KB C++ 565 B
提交时间 评测时间
2025-02-12 11:28:49 2025-02-12 11:28:54
#pragma GCC optimize(3, "Ofast", "unroll-loops", "-funroll-loops")
#include<bits/stdc++.h>
using namespace std;

using i32 = int;
using i64 = long long;
using i128 = __int128;
using u32 = unsigned int;
using u64 = unsigned long long;
using u128 = unsigned __int128;

void sort(unsigned *a, int n) {
	array<int, 130000> cnt{};
	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;
		}
	}
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #184.36 us540 KBRuntime ErrorScore: 0


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