結果

問題 No.2165 Let's Play Nim!
ユーザー t98slidert98slider
提出日時 2022-12-16 02:50:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,276 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 176,896 KB
実行使用メモリ 39,628 KB
平均クエリ数 9139.79
最終ジャッジ日時 2024-04-27 07:05:09
合計ジャッジ時間 11,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,940 KB
testcase_01 AC 142 ms
25,196 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 108 ms
25,208 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 53 ms
25,220 KB
testcase_22 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
        if((v ^ a[p]) > a[p]){
            auto it = S.lower_bound(make_pair(v2, -1));
            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