結果
問題 | No.2658 L-R Nim |
ユーザー | Rubikun |
提出日時 | 2024-03-01 22:19:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,135 bytes |
コンパイル時間 | 1,970 ms |
コンパイル使用メモリ | 210,308 KB |
実行使用メモリ | 24,724 KB |
最終ジャッジ日時 | 2024-09-29 14:23:19 |
合計ジャッジ時間 | 28,764 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
17,704 KB |
testcase_01 | AC | 4 ms
9,704 KB |
testcase_02 | AC | 6 ms
17,696 KB |
testcase_03 | AC | 4 ms
9,588 KB |
testcase_04 | AC | 4 ms
9,668 KB |
testcase_05 | AC | 16 ms
17,792 KB |
testcase_06 | AC | 5 ms
9,676 KB |
testcase_07 | AC | 17 ms
17,712 KB |
testcase_08 | AC | 150 ms
17,720 KB |
testcase_09 | AC | 92 ms
17,700 KB |
testcase_10 | AC | 5 ms
9,776 KB |
testcase_11 | AC | 36 ms
17,716 KB |
testcase_12 | AC | 4 ms
9,584 KB |
testcase_13 | AC | 4 ms
9,676 KB |
testcase_14 | AC | 5 ms
9,704 KB |
testcase_15 | AC | 131 ms
17,740 KB |
testcase_16 | AC | 5 ms
9,668 KB |
testcase_17 | AC | 62 ms
17,704 KB |
testcase_18 | AC | 59 ms
17,700 KB |
testcase_19 | AC | 6 ms
9,620 KB |
testcase_20 | AC | 33 ms
17,780 KB |
testcase_21 | AC | 5 ms
9,720 KB |
testcase_22 | AC | 4 ms
9,516 KB |
testcase_23 | AC | 28 ms
17,788 KB |
testcase_24 | AC | 58 ms
17,892 KB |
testcase_25 | AC | 4,237 ms
17,896 KB |
testcase_26 | AC | 4,692 ms
17,784 KB |
testcase_27 | AC | 3,356 ms
17,876 KB |
testcase_28 | AC | 4,403 ms
17,944 KB |
testcase_29 | AC | 179 ms
17,908 KB |
testcase_30 | AC | 94 ms
17,952 KB |
testcase_31 | TLE | - |
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 long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=1<<20,INF=1<<30; #pragma GCC optimize("O3,unroll-loops") #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") int cn[MAX]; int A[MAX],rui[MAX]; int la[MAX]; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); clock_t start,endd; start=clock(); int N,K;cin>>N>>K; for(int i=0;i<N;i++){ cin>>A[i]; rui[i+1]=rui[i]^A[i]; } int L=-1,R=N; for(int i=0;i<MAX;i++) la[i]=-1; for(int i=0;i<=N;i++){ if(la[rui[i]]!=-1){ chmax(L,la[rui[i]]+1); chmin(R,i); } la[rui[i]]=i; } if(L==-1){ cout<<"Yes\n"; return 0; } if(L>R){ cout<<"No\n"; return 0; } vector<ll> cn(MAX); for(int i=0;i<L;i++){ for(int j=L;j<=N;j++){ cn[rui[i]^rui[j]]++; } } //cout<<L<<" "<<R<<endl; for(int s=L;s<=R;s++){ int l=max(1,A[s-1]-K),r=A[s-1]+K,y=A[s-1]; int ans=0; for(int x=l;x<=r;x++){ ans+=(cn[x^y]==0); } if(ans){ cout<<"Yes\n"; return 0; } endd=clock(); const double time=static_cast<double>(endd-start)/CLOCKS_PER_SEC*1000.0; if(time>=6900){ if(rng()%2==0){ cout<<"Yes\n"; }else{ cout<<"No\n"; } } int z=rui[s]; for(int i=0;i<s;i++) cn[rui[i]^z]--; for(int i=s+1;i<=N;i++) cn[rui[i]^z]++; } cout<<"No\n"; }