結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 NachiaNachia
提出日時 2022-12-16 00:07:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
QLE  
実行時間 -
コード長 1,545 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 98,308 KB
実行使用メモリ 25,836 KB
平均クエリ数 1.69
最終ジャッジ日時 2024-04-27 04:24:08
合計ジャッジ時間 5,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 QLE -
testcase_01 WA -
testcase_02 QLE -
testcase_03 QLE -
testcase_04 QLE -
testcase_05 RE -
testcase_06 QLE -
testcase_07 QLE -
testcase_08 QLE -
testcase_09 QLE -
testcase_10 RE -
testcase_11 QLE -
testcase_12 QLE -
testcase_13 QLE -
testcase_14 QLE -
testcase_15 QLE -
testcase_16 QLE -
testcase_17 QLE -
testcase_18 QLE -
testcase_19 QLE -
testcase_20 QLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 QLE -
testcase_27 QLE -
testcase_28 QLE -
testcase_29 QLE -
testcase_30 AC 18 ms
25,452 KB
testcase_31 QLE -
testcase_32 QLE -
evil_2_big_1.txt QLE -
evil_2_big_2.txt RE -
evil_2_big_3.txt QLE -
evil_big_1.txt WA -
evil_big_2.txt QLE -
evil_big_3.txt QLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <atcoder/modint>
#include <atcoder/segtree>

using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

using Modint = atcoder::static_modint<998244353>;

namespace Segtree {
    using S = pair<int,int>;
    S e(){ return {-1,-1}; }
    S op(S l, S r){ return max(l, r); }
    using RQ = atcoder::segtree<S, op, e>;
}

int main(){
    int N; cin >> N;
    vector<int> A(N); rep(i,N) cin >> A[i];
    Segtree::RQ rq(N);
    rep(i,N) rq.set(i, {A[i],i});

    int allxor = 0;
    for(int a : A) allxor ^= a;

    auto readMove = [&](){
        int i,k; cin >> i >> k; i--;
        allxor ^= A[i];
        A[i] -= k;
        rq.set(i, {A[i],i});
        allxor ^= A[i];
    };

    auto doMove = [&](){
        int i = rq.all_prod().second;
        allxor ^= A[i];
        int k = A[i] - allxor;
        cout << (i+1) << ' ' << k << endl;
        A[i] -= k;
        rq.set(i, {A[i],i});
        allxor ^= A[i];
    };

    if(allxor != 0){
        cout << 1 << endl;
    } else {
        cout << 0 << endl;
        readMove();
    }

    while(true){
        doMove();
        int r; cin >> r;
        if(r <= 0) break;
        readMove();
    }
    return 0;
}


struct ios_do_not_sync{
    ios_do_not_sync(){
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;


0