結果

問題 No.2165 Let's Play Nim!
ユーザー t98slidert98slider
提出日時 2022-12-16 03:40:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,101 bytes
コンパイル時間 1,738 ms
コンパイル使用メモリ 178,068 KB
実行使用メモリ 41,136 KB
平均クエリ数 214.79
最終ジャッジ日時 2024-11-15 08:06:01
合計ジャッジ時間 92,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,812 KB
testcase_01 AC 142 ms
25,580 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 106 ms
25,208 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 57 ms
24,836 KB
testcase_22 AC 47 ms
24,580 KB
testcase_23 AC 44 ms
24,836 KB
testcase_24 AC 41 ms
25,348 KB
testcase_25 AC 88 ms
25,348 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 28 ms
25,580 KB
testcase_31 TLE -
testcase_32 TLE -
evil_2_big_1.txt TLE -
evil_2_big_2.txt TLE -
evil_2_big_3.txt TLE -
evil_big_1.txt AC 1,936 ms
26,224 KB
evil_big_2.txt TLE -
evil_big_3.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
    cin >> n;
    vector<set<int>> tb(75001);
    vector<int> a(n);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        tb[a[i]].insert(i);
        v ^= a[i];
    }
    auto update = [&](int p, int x){
        tb[a[p]].erase(p);
        v ^= a[p];
        a[p] -= x;
        v ^= a[p];
        tb[a[p]].insert(p);
    };
    auto my_turn = [&](){
        for(int j = 1; j < 75000; j++){
            if((j ^ v) >= j)continue;
            if(tb[j].empty())continue;
            cout << (*tb[j].begin()) + 1 << " " << j - (j ^ v) << '\n';
            update(*tb[j].begin(), j - (j ^ v));
            return;
        }
    };
    if(v == 0){
        cout << 0 << endl;
        cin >> p >> x;
        update(--p, x);
    }else{
        cout << 1 << endl;
        my_turn();
    }
    while(true){
        cin >> s;
        if(s == -1)break;
        my_turn();
        cin >> s;
        if(s == -1)break;
        cin >> p >> x;
        update(--p, x);
    }
}
0