結果

問題 No.2658 L-R Nim
ユーザー RubikunRubikun
提出日時 2024-03-01 22:04:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,703 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 206,996 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-09-29 14:07:20
合計ジャッジ時間 32,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,616 KB
testcase_01 AC 5 ms
11,440 KB
testcase_02 AC 8 ms
19,640 KB
testcase_03 AC 5 ms
11,380 KB
testcase_04 AC 5 ms
11,424 KB
testcase_05 AC 18 ms
19,716 KB
testcase_06 AC 6 ms
11,496 KB
testcase_07 AC 18 ms
19,568 KB
testcase_08 AC 122 ms
19,808 KB
testcase_09 AC 79 ms
19,632 KB
testcase_10 AC 6 ms
11,504 KB
testcase_11 AC 31 ms
19,728 KB
testcase_12 AC 6 ms
11,372 KB
testcase_13 AC 6 ms
11,468 KB
testcase_14 AC 6 ms
11,400 KB
testcase_15 AC 101 ms
19,756 KB
testcase_16 AC 6 ms
11,584 KB
testcase_17 AC 52 ms
19,568 KB
testcase_18 AC 49 ms
19,636 KB
testcase_19 AC 6 ms
11,432 KB
testcase_20 AC 31 ms
19,576 KB
testcase_21 AC 6 ms
11,464 KB
testcase_22 AC 6 ms
11,468 KB
testcase_23 AC 28 ms
19,576 KB
testcase_24 AC 52 ms
19,792 KB
testcase_25 AC 3,838 ms
20,360 KB
testcase_26 AC 4,300 ms
20,276 KB
testcase_27 AC 3,036 ms
20,412 KB
testcase_28 AC 3,665 ms
20,412 KB
testcase_29 AC 156 ms
20,276 KB
testcase_30 AC 83 ms
20,360 KB
testcase_31 AC 6,729 ms
20,400 KB
testcase_32 AC 6,580 ms
20,440 KB
testcase_33 AC 9 ms
11,852 KB
testcase_34 AC 1,874 ms
20,384 KB
testcase_35 AC 1,139 ms
20,144 KB
testcase_36 AC 1,732 ms
20,340 KB
testcase_37 AC 9 ms
11,856 KB
testcase_38 AC 6,838 ms
20,460 KB
testcase_39 TLE -
testcase_40 AC 6,732 ms
20,460 KB
testcase_41 AC 6,940 ms
20,420 KB
testcase_42 AC 6,908 ms
20,436 KB
testcase_43 AC 6,876 ms
20,436 KB
testcase_44 AC 6,903 ms
20,356 KB
testcase_45 AC 6,897 ms
20,432 KB
testcase_46 AC 6,874 ms
20,436 KB
testcase_47 AC 6,812 ms
20,404 KB
testcase_48 AC 1,733 ms
20,608 KB
testcase_49 AC 85 ms
20,356 KB
testcase_50 AC 6,873 ms
20,428 KB
testcase_51 AC 6,805 ms
20,368 KB
testcase_52 AC 6,798 ms
20,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,K;cin>>N>>K;
    vector<ll> A(N),rui(N+1);
    for(int i=0;i<N;i++){
        cin>>A[i];
        rui[i+1]=rui[i]^A[i];
    }
    
    ll L=-1,R=N;
    
    vector<ll> la(MAX,-1);
    
    for(ll 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(ll i=0;i<L;i++){
        for(ll j=L;j<=N;j++){
            cn[rui[i]^rui[j]]++;
        }
    }
    
    //cout<<L<<" "<<R<<endl;
    
    for(ll s=L;s<=R;s++){
        for(ll x=max(1LL,A[s-1]-K);x<=A[s-1]+K;x++){
            ll z=A[s-1]^x;
            if(cn[z]==0){
                //cout<<s<<" "<<x<<" "<<z<<endl;
                cout<<"Yes\n";
                return 0;
            }
        }
        
        for(ll i=0;i<s;i++) cn[rui[i]^rui[s]]--;
        for(ll i=s+1;i<=N;i++) cn[rui[i]^rui[s]]++;
    }
    
    cout<<"No\n";
}

0