結果

問題 No.2165 Let's Play Nim!
ユーザー t98slidert98slider
提出日時 2022-12-16 04:38:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 178,508 KB
実行使用メモリ 25,580 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-04-27 08:31:56
合計ジャッジ時間 14,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
25,184 KB
testcase_01 AC 119 ms
25,196 KB
testcase_02 AC 131 ms
24,556 KB
testcase_03 AC 82 ms
25,580 KB
testcase_04 AC 21 ms
25,196 KB
testcase_05 AC 26 ms
24,940 KB
testcase_06 AC 24 ms
24,556 KB
testcase_07 AC 23 ms
24,940 KB
testcase_08 AC 84 ms
25,208 KB
testcase_09 AC 20 ms
24,568 KB
testcase_10 AC 27 ms
24,824 KB
testcase_11 AC 129 ms
24,940 KB
testcase_12 AC 111 ms
24,812 KB
testcase_13 AC 21 ms
25,196 KB
testcase_14 AC 24 ms
25,196 KB
testcase_15 AC 20 ms
25,196 KB
testcase_16 AC 105 ms
25,196 KB
testcase_17 AC 53 ms
25,196 KB
testcase_18 AC 183 ms
25,184 KB
testcase_19 AC 22 ms
25,208 KB
testcase_20 AC 25 ms
24,568 KB
testcase_21 AC 46 ms
25,220 KB
testcase_22 AC 37 ms
24,580 KB
testcase_23 AC 36 ms
25,220 KB
testcase_24 AC 34 ms
24,964 KB
testcase_25 AC 73 ms
25,220 KB
testcase_26 AC 125 ms
24,812 KB
testcase_27 AC 40 ms
24,940 KB
testcase_28 AC 60 ms
24,556 KB
testcase_29 AC 20 ms
25,448 KB
testcase_30 AC 19 ms
25,196 KB
testcase_31 AC 22 ms
25,196 KB
testcase_32 AC 90 ms
24,940 KB
evil_2_big_1.txt AC 1,465 ms
24,556 KB
evil_2_big_2.txt AC 1,605 ms
24,556 KB
evil_2_big_3.txt AC 1,432 ms
25,196 KB
evil_big_1.txt AC 1,576 ms
24,568 KB
evil_big_2.txt AC 1,606 ms
24,836 KB
evil_big_3.txt AC 1,640 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    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);
    }
    while(true){
        cin >> s;
        if(s == -1)return 0;
        my_turn();
        cin >> s;
        if(s == -1)return 0;
        cin >> p >> x;
        update(--p, x);
    }
}
0