結果

問題 No.2165 Let's Play Nim!
ユーザー t98slidert98slider
提出日時 2022-12-16 03:43:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,242 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 176,808 KB
実行使用メモリ 40,500 KB
平均クエリ数 0.13
最終ジャッジ日時 2024-11-15 08:11:27
合計ジャッジ時間 114,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 TLE * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int msb(int v){
    if(v == 0)return -1;
    int res = 0;
    while(v >> res)res++;
    res--;
    return res;
}

int main(){
    //ios::sync_with_stdio(false);
    //cin.tie(0);
    int n, v = 0, p, x, s;
    cin >> n;
    vector<int> a(n);
    set<pair<int,int>> S;
    for(int i = 0; i < n; i++){
        cin >> a[i];
        v ^= a[i];
        S.insert({a[i], i});
    }
    auto update = [&](int p, int x){
        S.erase(make_pair(a[p], p));
        v ^= a[p];
        a[p] -= x;
        v ^= a[p];
        S.insert(make_pair(a[p], p));
    };
    auto my_turn = [&](){
        int v2 = 1 << msb(v);
        auto it = S.rbegin();
        int p = it -> second;
        while((v ^ a[p]) >= a[p]){
            it--;
            p = it -> second;
        }
        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();
    }
    while(true){
        cin >> s;
        if(s == -1)break;
        my_turn();
        cin >> s;
        if(s == -1)break;
        cin >> p >> x;
        update(--p, x);
    }
}
0