結果

問題 No.669 対決!!! 飲み比べ
ユーザー i`d like to eat papicoi`d like to eat papico
提出日時 2024-05-19 23:12:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 87,008 KB
実行使用メモリ 7,220 KB
最終ジャッジ日時 2024-05-19 23:12:42
合計ジャッジ時間 3,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
7,156 KB
testcase_01 AC 55 ms
7,148 KB
testcase_02 AC 49 ms
7,120 KB
testcase_03 AC 56 ms
7,116 KB
testcase_04 AC 46 ms
7,208 KB
testcase_05 AC 51 ms
7,116 KB
testcase_06 AC 53 ms
7,220 KB
testcase_07 AC 64 ms
7,180 KB
testcase_08 AC 55 ms
7,136 KB
testcase_09 AC 57 ms
7,208 KB
testcase_10 AC 56 ms
7,144 KB
testcase_11 AC 55 ms
7,168 KB
testcase_12 AC 55 ms
7,152 KB
testcase_13 AC 56 ms
7,112 KB
testcase_14 AC 55 ms
7,152 KB
testcase_15 AC 51 ms
7,168 KB
testcase_16 AC 56 ms
7,184 KB
testcase_17 AC 56 ms
7,192 KB
testcase_18 AC 57 ms
7,208 KB
testcase_19 AC 54 ms
7,216 KB
testcase_20 AC 56 ms
7,164 KB
testcase_21 AC 55 ms
7,116 KB
testcase_22 AC 56 ms
7,176 KB
testcase_23 AC 57 ms
7,148 KB
testcase_24 AC 64 ms
7,192 KB
testcase_25 AC 56 ms
7,180 KB
testcase_26 AC 59 ms
7,108 KB
testcase_27 AC 56 ms
7,164 KB
testcase_28 AC 56 ms
7,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <utility>
#include <set>
#include <algorithm>

using namespace std;
using ll = long long;

#define rep(i,N) for(int i=0;i<(int)N;++i)
#define MAX 1000009
#define MAXK 1009

vector<int> DP(MAX);

int main(void) {
	int N, K; cin >> N >> K;
	vector<int> A(N);
	rep(i, N) cin >> A[i];
	//step1 DPでgrundy数を求める
	set<int> st;
	rep(i, MAXK) st.insert(i);
	//-1から-Kまでの間のgrundy数をメモする
	vector<int> cnt(MAXK, 0);
	DP[0] = 0;
	st.erase(0);
	cnt[0] = 1;
	for (int i = 1; i < MAX; ++i) {
		if (i - K > 0) {
			cnt[DP[i - K - 1]]--;
			if (cnt[DP[i - K - 1]] == 0) st.insert(DP[i - K - 1]);
		}
		auto itr = st.begin();
		DP[i] = *itr;
		st.erase(DP[i]);
		cnt[DP[i]]++;
	}
	//rep(i, 1000) cout << DP[i] << " ";
	//step2 grundy数からXORする
	int grundy = 0;
	rep(i, N) grundy ^= DP[A[i]];
	if (grundy == 0) cout << "NO" << endl;
	else cout << "YES" << endl;
	return 0;
}
0