結果
| 問題 |
No.182 新規性の虜
|
| コンテスト | |
| ユーザー |
nonamae
|
| 提出日時 | 2022-07-29 17:11:43 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,357 bytes |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-19 08:14:18 |
| 合計ジャッジ時間 | 5,087 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 27 |
コンパイルメッセージ
main.c: In function 'radix_sort64':
main.c:15:9: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
15 | memset(work2, 0, 0x10000 * sizeof(uint64_t));
| ^~~~~~
main.c:4:1: note: include '<string.h>' or provide a declaration of 'memset'
3 | #include <stdint.h>
+++ |+#include <string.h>
4 |
main.c:15:9: warning: incompatible implicit declaration of built-in function 'memset' [-Wbuiltin-declaration-mismatch]
15 | memset(work2, 0, 0x10000 * sizeof(uint64_t));
| ^~~~~~
main.c:15:9: note: include '<string.h>' or provide a declaration of 'memset'
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
void radix_sort64(uint64_t *a, int a_len) {
uint64_t *work0 = (uint64_t *)calloc(0x10000, sizeof(uint64_t));
uint64_t *work1 = (uint64_t *)calloc(a_len, sizeof(uint64_t));
uint64_t *work2 = (uint64_t *)calloc(0x10000, sizeof(uint64_t));
#ifdef LOCAL
if (work0 == NULL || work1 == NULL || work2 == NULL) exit(EXIT_FAILURE);
#endif
uint64_t shift = 0;
__uint128_t x = 0;
while (shift < 64ul) {
memset(work2, 0, 0x10000 * sizeof(uint64_t));
for (int i = 0; i < a_len; i++) {
x = (a[i] >> shift) & 0xffff;
work2[x]++;
work1[i] = a[i];
}
work0[0] = 0;
for (uint64_t u = 0; u < 0xffff; u++) work0[u + 1] = work0[u] + work2[u];
for (int i = 0; i < a_len; i++) {
x = (work1[i] >> shift) & 0xffff;
a[work0[x]] = work1[i];
work0[x]++;
}
shift += 16;
}
free(work0);
free(work1);
free(work2);
}
int main(void) {
int n; scanf("%d", &n);
int64_t a[n + 2];
for (int i = 0; i < n; ++i) scanf("%lld", a[i]);
a[n] = 0;
a[n + 1] = 1e9 + 7;
radix_sort64(a, n + 2);
int ans = 0;
for (int i = 1; i <= n; ++i) if (a[i - 1] != a[i] && a[i] != a[i + 1]) ++ans;
printf("%d\n", ans);
return 0;
}
nonamae