結果
問題 | No.2165 Let's Play Nim! |
ユーザー | chro_96 |
提出日時 | 2022-12-16 00:32:16 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,998 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 32,128 KB |
実行使用メモリ | 39,856 KB |
平均クエリ数 | 0.08 |
最終ジャッジ日時 | 2024-04-27 00:23:46 |
合計ジャッジ時間 | 3,966 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,812 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
evil_2_big_1.txt | -- | - |
evil_2_big_2.txt | -- | - |
evil_2_big_3.txt | -- | - |
evil_big_1.txt | -- | - |
evil_big_2.txt | -- | - |
evil_big_3.txt | -- | - |
ソースコード
#include <stdio.h> void set_segt (int t[][2], int idx, int val, int size) { idx = idx+size-1; t[idx][0] = val; t[idx][1] = idx-size+1; while (idx > 0) { idx = (idx-1)/2; if (t[2*idx+1][0] > t[2*idx+2][0]) { t[idx][0] = t[2*idx+1][0]; t[idx][1] = t[2*idx+1][1]; } else { t[idx][0] = t[2*idx+2][0]; t[idx][1] = t[2*idx+2][1]; } } return; } int argmax_segt_rec (int t[][2], int a, int b, int k, int l, int r, int *argmax) { int ans = 0; int tmp = 0; int tmp_argmax = 0; if (r <= a || b <= l) { *argmax = -1; return 0; } if (a <= l && r <= b) { *argmax = t[k][1]; return t[k][0]; } ans = argmax_segt_rec(t, a, b, 2*k+1, l, (l+r)/2, argmax); tmp = argmax_segt_rec(t, a, b, 2*k+2, (l+r)/2, r, &tmp_argmax); if (tmp > ans) { ans = tmp; *argmax = tmp_argmax; } return ans; } int argmax_segt (int t[][2], int a, int b, int size) { int ans = 0; int max = argmax_segt_rec(t, a, b, 0, 0, size, &ans); return ans; } int main () { int n = 0; int a[75000] = {}; int i = 0; int k = 0; int ret = 0; int res = 0; int xor = 0; int p = 0; int size = 1; int segt[300000][2] = {}; res = scanf("%d", &n); while (size < n) { size *= 2; } for (int i = 0; i < n; i++) { res = scanf("%d", a+i); xor ^= a[i]; set_segt(segt, i, a[i], size); } if (xor > 0) { p = 1; } printf("%d\n", p); fflush(stdout); while (ret >= 0) { if (p > 0) { i = argmax_segt(segt, 0, n, size); xor ^= a[i]; k = a[i]-xor; a[i] = xor; xor = 0; set_segt(segt, i, a[i], size); printf("%d %d\n", i+1, k); fflush(stdout); scanf("%d", &ret); } else { res = scanf("%d", &i); res = scanf("%d", &k); res = scanf("%d", &ret); xor ^= a[i-1]; a[i-1] -= k; xor ^= a[i-1]; set_segt(segt, i-1, a[i-1], size); } p = 1-p; } return 0; }