結果

問題 No.2658 L-R Nim
ユーザー kmjpkmjp
提出日時 2024-03-03 22:28:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,853 ms / 7,000 ms
コード長 1,398 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 207,816 KB
実行使用メモリ 481,480 KB
最終ジャッジ日時 2024-09-29 17:12:43
合計ジャッジ時間 81,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 326 ms
85,572 KB
testcase_06 AC 397 ms
85,568 KB
testcase_07 AC 337 ms
85,448 KB
testcase_08 AC 333 ms
85,572 KB
testcase_09 AC 414 ms
85,448 KB
testcase_10 AC 394 ms
85,572 KB
testcase_11 AC 398 ms
85,444 KB
testcase_12 AC 397 ms
85,444 KB
testcase_13 AC 399 ms
85,440 KB
testcase_14 AC 396 ms
85,448 KB
testcase_15 AC 319 ms
85,444 KB
testcase_16 AC 417 ms
85,444 KB
testcase_17 AC 408 ms
85,448 KB
testcase_18 AC 405 ms
85,704 KB
testcase_19 AC 408 ms
85,440 KB
testcase_20 AC 348 ms
85,440 KB
testcase_21 AC 416 ms
85,572 KB
testcase_22 AC 414 ms
85,568 KB
testcase_23 AC 333 ms
85,444 KB
testcase_24 AC 357 ms
85,572 KB
testcase_25 AC 2,820 ms
481,480 KB
testcase_26 AC 2,010 ms
481,352 KB
testcase_27 AC 2,853 ms
481,348 KB
testcase_28 AC 2,699 ms
481,480 KB
testcase_29 AC 2,479 ms
481,344 KB
testcase_30 AC 2,216 ms
481,476 KB
testcase_31 AC 2,114 ms
481,472 KB
testcase_32 AC 2,664 ms
481,348 KB
testcase_33 AC 1,610 ms
292,932 KB
testcase_34 AC 2,727 ms
481,348 KB
testcase_35 AC 1,390 ms
307,784 KB
testcase_36 AC 2,743 ms
481,480 KB
testcase_37 AC 1,497 ms
353,092 KB
testcase_38 AC 2,731 ms
481,476 KB
testcase_39 AC 2,779 ms
481,476 KB
testcase_40 AC 2,716 ms
481,348 KB
testcase_41 AC 2,753 ms
481,348 KB
testcase_42 AC 2,746 ms
481,348 KB
testcase_43 AC 2,725 ms
481,352 KB
testcase_44 AC 2,687 ms
481,352 KB
testcase_45 AC 2,791 ms
481,476 KB
testcase_46 AC 2,747 ms
481,348 KB
testcase_47 AC 2,734 ms
481,348 KB
testcase_48 AC 2,562 ms
481,348 KB
testcase_49 AC 2,565 ms
481,480 KB
testcase_50 AC 2,560 ms
481,348 KB
testcase_51 AC 2,741 ms
481,352 KB
testcase_52 AC 2,768 ms
481,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,K,A[101010];
set<int> S[50505];
set<int> cand;
int X[50505];
int M[1<<20];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) {
		cin>>A[i];
		X[i+1]=X[i]^A[i];
		for(j=-K;j<=K;j++) if(A[i]+j>=1) {
			S[i].insert(A[i]^(A[i]+j));
			cand.insert(A[i]^(A[i]+j));
		}
	}
	
	FORR(c,cand) {
		int num=0;
		FOR(i,N+1) {
			if(M[X[i]]++==0) num++;
		}
		
		for(i=N-1;i>=0;i--) {
			if(--M[X[i+1]]==0) num--;
			if(M[X[i+1]^c]++==0) num++;
			if(num==N+1&&S[i].count(c)) {
				cout<<"Yes"<<endl;
				return;
			}
		}
		M[0]--;
		FOR(i,N) M[X[i+1]^c]=0;
	}
	cout<<"No"<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0