結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 rin204rin204
提出日時 2022-12-16 00:25:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,341 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 204,168 KB
実行使用メモリ 25,580 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-04-27 00:15:15
合計ジャッジ時間 18,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,184 KB
testcase_01 AC 139 ms
24,812 KB
testcase_02 AC 151 ms
24,556 KB
testcase_03 AC 94 ms
25,580 KB
testcase_04 AC 24 ms
25,196 KB
testcase_05 AC 31 ms
24,812 KB
testcase_06 AC 32 ms
24,556 KB
testcase_07 AC 29 ms
24,812 KB
testcase_08 AC 102 ms
24,824 KB
testcase_09 AC 26 ms
25,196 KB
testcase_10 AC 32 ms
25,208 KB
testcase_11 AC 150 ms
24,556 KB
testcase_12 AC 127 ms
25,240 KB
testcase_13 AC 24 ms
24,556 KB
testcase_14 AC 30 ms
25,196 KB
testcase_15 AC 27 ms
25,196 KB
testcase_16 AC 123 ms
24,812 KB
testcase_17 AC 64 ms
25,184 KB
testcase_18 AC 210 ms
25,196 KB
testcase_19 AC 25 ms
25,208 KB
testcase_20 AC 28 ms
25,208 KB
testcase_21 AC 53 ms
25,220 KB
testcase_22 AC 44 ms
24,580 KB
testcase_23 AC 43 ms
24,836 KB
testcase_24 AC 38 ms
24,580 KB
testcase_25 AC 84 ms
24,836 KB
testcase_26 AC 146 ms
25,184 KB
testcase_27 AC 47 ms
24,812 KB
testcase_28 AC 71 ms
25,196 KB
testcase_29 AC 24 ms
24,800 KB
testcase_30 AC 23 ms
24,812 KB
testcase_31 AC 23 ms
25,580 KB
testcase_32 AC 97 ms
25,580 KB
evil_2_big_1.txt AC 1,723 ms
25,452 KB
evil_2_big_2.txt AC 1,915 ms
25,196 KB
evil_2_big_3.txt AC 1,676 ms
24,556 KB
evil_big_1.txt AC 1,843 ms
25,220 KB
evil_big_2.txt AC 1,927 ms
25,220 KB
evil_big_3.txt AC 1,880 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
// #define endl '\n'

int bit_length(int x){
	int c = 1;
	int i = 0;
	while(c <= x){
		i++;
		c *= 2;
	}
	return i;
}

void solve(){
	int n;
	cin >> n;
	vector<int> A(n);
	int x = 0;
	vector<set<int>> se(20, set<int>());
	for(int i = 0; i < n; i++){
		cin >> A[i];
		x ^= A[i];
		for(int j = 0; j < 20; j++){
			if((A[i] >> j) & 1) se[j].insert(i);
		}
	}
	bool turn;
	if(x == 0){
		cout << 0 << endl;
		turn = false;
	}
	else{
		cout << 1 << endl;
		turn = true;
	}
	int ret;
	while(1){
		if(turn){
			assert(x != 0);
			int b = bit_length(x) - 1;
			auto it = se[b].begin();
			int	i = (*it);
			int	a = A[i];
			for(int j = 0; j < 20; j++){
				if((a >> j) & 1) se[j].erase(i);
			}
			int d = a - (a ^ x);
			cout << i + 1 << " " << d << endl;
			cin >> ret;
			if(ret == -1) return;
			a -= d;
			A[i] = a;
			x = 0;
			for(int j = 0; j < 20; j++){
				if((a >> j) & 1) se[j].insert(i);
			}
		}
		else{
			assert(x == 0);
			int i, k;
			cin >> i >> k;
			i--;
			cin >> ret;
			if(ret == -1) return;
			int a = A[i];
			for(int j = 0; j < 20; j++){
				if((a >> j) & 1) se[j].erase(i);
			}
			x ^= a;
			a -= k;
			x ^= a;
			A[i] = a;
			for(int j = 0; j < 20; j++){
				if((a >> j) & 1) se[j].insert(i);
			}
		}
		turn = turn ^ true;
	}
}

int main(){
	solve();
}
0