結果
問題 | No.2658 L-R Nim |
ユーザー | kmjp |
提出日時 | 2024-03-03 22:31:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,465 bytes |
コンパイル時間 | 2,228 ms |
コンパイル使用メモリ | 213,848 KB |
実行使用メモリ | 523,968 KB |
最終ジャッジ日時 | 2024-09-29 17:15:11 |
合計ジャッジ時間 | 71,895 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,980 KB |
testcase_01 | AC | 2 ms
7,748 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 281 ms
92,944 KB |
testcase_06 | AC | 348 ms
92,488 KB |
testcase_07 | AC | 278 ms
92,356 KB |
testcase_08 | AC | 279 ms
93,292 KB |
testcase_09 | AC | 352 ms
92,608 KB |
testcase_10 | AC | 349 ms
94,120 KB |
testcase_11 | AC | 341 ms
93,348 KB |
testcase_12 | AC | 353 ms
92,948 KB |
testcase_13 | AC | 352 ms
92,640 KB |
testcase_14 | AC | 348 ms
91,896 KB |
testcase_15 | AC | 277 ms
92,448 KB |
testcase_16 | AC | 356 ms
93,664 KB |
testcase_17 | AC | 350 ms
93,128 KB |
testcase_18 | AC | 361 ms
93,636 KB |
testcase_19 | AC | 350 ms
93,220 KB |
testcase_20 | AC | 293 ms
92,796 KB |
testcase_21 | AC | 353 ms
92,048 KB |
testcase_22 | AC | 359 ms
92,972 KB |
testcase_23 | AC | 279 ms
92,596 KB |
testcase_24 | AC | 316 ms
93,420 KB |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | AC | 1,435 ms
317,172 KB |
testcase_34 | MLE | - |
testcase_35 | AC | 1,208 ms
333,580 KB |
testcase_36 | MLE | - |
testcase_37 | AC | 1,235 ms
382,412 KB |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | MLE | - |
testcase_41 | MLE | - |
testcase_42 | MLE | - |
testcase_43 | MLE | - |
testcase_44 | MLE | - |
testcase_45 | MLE | - |
testcase_46 | MLE | - |
testcase_47 | MLE | - |
testcase_48 | MLE | - |
testcase_49 | MLE | - |
testcase_50 | MLE | - |
testcase_51 | MLE | - |
testcase_52 | MLE | - |
ソースコード
#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]; vector<int> cand; int X[50505]; int M[2<<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.push_back(A[i]^(A[i]+j)); } } sort(ALL(cand)); cand.erase(unique(ALL(cand)),cand.end()); 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; }