結果

問題 No.2165 Let's Play Nim!
ユーザー tko919tko919
提出日時 2022-12-16 00:26:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,851 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 203,324 KB
実行使用メモリ 25,820 KB
平均クエリ数 1.77
最終ジャッジ日時 2024-04-27 00:17:31
合計ジャッジ時間 11,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,196 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
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 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 23 ms
25,196 KB
testcase_31 AC 23 ms
25,196 KB
testcase_32 RE -
evil_2_big_1.txt RE -
evil_2_big_2.txt RE -
evil_2_big_3.txt RE -
evil_big_1.txt RE -
evil_big_2.txt RE -
evil_big_3.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "library/Template/template.hpp"
#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff;
const ll INF = 0x1fffffffffffffff;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}
#line 2 "sol.cpp"
// #include "Utility/fastio.hpp"

using P=pair<int,int>;


// FastIO io;
int main(){
    int n,tmp;
    cin>>n;
    vector<int> a(n);
    rep(i,0,n)cin>>a[i];

    int gr=0;
    ll sum=0;
    set<int> bit[20];

    auto process=[&](int k,int x){
        sum-=x;
        gr^=a[k];
        rep(j,0,30)if(a[k]>>j&1)bit[j].erase(k);
        a[k]-=x;
        gr^=a[k];
        rep(j,0,30)if(a[k]>>j&1)bit[j].insert(k);
    };
    auto out=[&](int k,int x,bool done=0)->void{
        cout<<k+1<<' '<<x<<endl;
        cin>>tmp;
        if(done)assert(tmp==-1);
        else assert(tmp==0);
    };
    auto in=[&]()->P{
        int k,x;
        cin>>k>>x;
        k--;
        cin>>tmp;
        assert(tmp==0);
        return {k,x};
    };

    
    rep(i,0,n){
        gr^=a[i];
        sum+=a[i];
        rep(j,0,20)if(a[i]>>j&1)bit[j].insert(i);
    }
    if(gr==0){
        cout<<0<<endl;
        auto [k,x]=in();
        process(k,x);
    }
    else cout<<1<<endl;
    
    for(;;){
        assert(gr!=0);
        int sel=-1;
        for(int j=29;j>=0;j--){
            if(gr>>j&1){
                assert(bit[j].size());
                sel=*bit[j].begin();
                break;
            }
        }
        assert(sel!=-1);
        int x=a[sel]-a[sel]^gr;
        process(sel,x);
        out(sel,x,sum==0);
        if(sum==0)break;

        auto [k,y]=in();
        process(k,y);
    }
    return 0;
}
0