結果
問題 | No.2658 L-R Nim |
ユーザー | kmjp |
提出日時 | 2024-03-03 22:25:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,330 bytes |
コンパイル時間 | 2,405 ms |
コンパイル使用メモリ | 218,672 KB |
実行使用メモリ | 486,180 KB |
最終ジャッジ日時 | 2024-09-29 17:11:19 |
合計ジャッジ時間 | 110,390 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 344 ms
81,792 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 399 ms
81,664 KB |
testcase_08 | AC | 365 ms
81,664 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 6,715 ms
81,664 KB |
testcase_11 | AC | 5,935 ms
81,664 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 369 ms
81,792 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1,756 ms
81,792 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 368 ms
81,664 KB |
testcase_24 | AC | 3,063 ms
81,664 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
#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]; 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) { map<int,int> M; FOR(i,N+1) M[X[i]]++; for(i=N-1;i>=0;i--) { if(--M[X[i+1]]==0) M.erase(X[i+1]); M[X[i+1]^c]++; if(M.size()==N+1&&S[i].count(c)) { cout<<"Yes"<<endl; return; } } } 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; }