結果
問題 | No.2165 Let's Play Nim! |
ユーザー | t98slider |
提出日時 | 2022-12-16 04:37:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,253 bytes |
コンパイル時間 | 1,792 ms |
コンパイル使用メモリ | 177,376 KB |
実行使用メモリ | 40,240 KB |
平均クエリ数 | 68.51 |
最終ジャッジ日時 | 2024-04-27 08:30:55 |
合計ジャッジ時間 | 5,547 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,940 KB |
testcase_01 | AC | 142 ms
25,196 KB |
testcase_02 | TLE | - |
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 <bits/stdc++.h> using namespace std; int main(){ int n, v = 0, p, x, s, M = 18; cin >> n; vector<int> a(n); vector<set<int>> S(M); for(int i = 0; i < n; i++){ cin >> a[i]; v ^= a[i]; for(int j = 0; j < M; j++){ if(a[i] >> j & 1)S[j].insert(i); } } auto update = [&](int p, int x){ v ^= a[p]; for(int j = 0; j < M; j++){ if(a[p] >> j & 1)S[j].erase(p); } a[p] -= x; v ^= a[p]; for(int j = 0; j < M; j++){ if(a[p] >> j & 1)S[j].insert(p); } }; auto my_turn = [&](){ int p = *S[__lg(v)].begin(); cout << p + 1 << " " << a[p] - (v ^ a[p]) << endl; update(p, a[p] - (v ^ a[p])); }; if(v == 0){ cout << 0 << endl; cin >> p >> x; update(--p, x); }else{ cout << 1 << endl; my_turn(); cin >> s; if(s == -1)return 0; cin >> p >> x; update(--p, x); cin >> s; if(s == -1)return 0; } while(true){ cin >> s; if(s == -1)return 0; my_turn(); cin >> s; if(s == -1)return 0; cin >> p >> x; update(--p, x); } }