結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | bal4u |
提出日時 | 2019-08-18 10:29:51 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 128 ms / 5,000 ms |
コード長 | 1,749 bytes |
コンパイル時間 | 564 ms |
コンパイル使用メモリ | 31,216 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 13:42:15 |
合計ジャッジ時間 | 2,291 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 128 ms
5,248 KB |
testcase_03 | AC | 101 ms
5,248 KB |
testcase_04 | AC | 51 ms
5,248 KB |
testcase_05 | AC | 35 ms
5,248 KB |
testcase_06 | AC | 14 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 18 ms
5,248 KB |
testcase_09 | AC | 124 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 113 ms
5,248 KB |
testcase_12 | AC | 107 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 125 ms
5,248 KB |
testcase_15 | AC | 114 ms
5,248 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 72 ms
5,248 KB |
testcase_18 | AC | 61 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:15:24: note: in expansion of macro 'gc' 15 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.9 モンスターのレベル上げ // bal4u 2019.8.18 #include <stdio.h> #include <string.h> //// 入出力関係 #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif int in() { // 非負整数の入力 int n = 0, c = gc(); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } //// 優先度付き(最小)キュー #define MAX 10000 int que[MAX]; int qsize; int qcp[MAX]; int qsz; #define PARENT(i) ((i)>>1) #define LEFT(i) ((i)<<1) #define RIGHT(i) (((i)<<1)+1) void min_heapify(int i) { int l, r, mi; l = LEFT(i), r = RIGHT(i); if (l < qsize && que[l] < que[i]) mi = l; else mi = i; if (r < qsize && que[r] < que[mi]) mi = r; if (mi != i) { int qt = que[i]; que[i] = que[mi]; que[mi] = qt; min_heapify(mi); } } void deq() { que[0] = que[--qsize]; min_heapify(0); } void enq(int a) { int i, mi; i = qsize++; que[i] = a; while (i > 0 && que[i] < que[mi = PARENT(i)]) { int qt = que[i]; que[i] = que[mi]; que[mi] = qt; i = mi; } } //// 本問題関連 #define SFT 11 #define MASK 2047 // 2^11-1 int N; int a[1503], b[1503]; int main() { int i, j, k, t, ans; N = in(); for (i = 0; i < N; i++) a[i] = in(); for (i = 0; i < N; i++) b[i] = in() >> 1; if (N == 1) { puts("1"); return 0; } ans = N; qsize = 0; for (i = 0; i < N; i++) enq(a[i] << SFT); qsz = qsize, memcpy(qcp, que, sizeof(int)*qsz); for (i = 0; i < N; i++) { if (i) qsize = qsz, memcpy(que, qcp, sizeof(int)*qsz); t = 0, k = i, j = N; while (j--) { int x = que[0] >> SFT, y = (que[0] & MASK)+1; deq(); enq(((x + b[k]) << SFT) | y); if (y > t) t = y; if (++k == N) k = 0; } if (t < ans) { ans = t; if (ans == 1) break; } } printf("%d\n", ans); return 0; }