結果

問題 No.2658 L-R Nim
ユーザー RubikunRubikun
提出日時 2024-03-01 22:13:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,732 bytes
コンパイル時間 2,460 ms
コンパイル使用メモリ 253,600 KB
実行使用メモリ 21,844 KB
最終ジャッジ日時 2024-09-29 14:17:45
合計ジャッジ時間 48,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
17,612 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 7 ms
17,560 KB
testcase_03 AC 4 ms
9,664 KB
testcase_04 AC 3 ms
9,472 KB
testcase_05 AC 15 ms
17,588 KB
testcase_06 AC 5 ms
9,736 KB
testcase_07 AC 17 ms
17,612 KB
testcase_08 AC 112 ms
17,716 KB
testcase_09 AC 69 ms
17,604 KB
testcase_10 AC 5 ms
9,536 KB
testcase_11 AC 28 ms
17,560 KB
testcase_12 AC 5 ms
9,564 KB
testcase_13 AC 4 ms
9,588 KB
testcase_14 AC 4 ms
9,548 KB
testcase_15 AC 96 ms
17,552 KB
testcase_16 AC 5 ms
9,492 KB
testcase_17 AC 49 ms
17,576 KB
testcase_18 AC 45 ms
17,676 KB
testcase_19 AC 6 ms
9,548 KB
testcase_20 AC 29 ms
17,484 KB
testcase_21 AC 5 ms
9,508 KB
testcase_22 AC 5 ms
9,592 KB
testcase_23 AC 25 ms
17,760 KB
testcase_24 AC 45 ms
17,764 KB
testcase_25 AC 3,146 ms
17,864 KB
testcase_26 AC 3,539 ms
17,824 KB
testcase_27 AC 2,565 ms
17,824 KB
testcase_28 AC 3,384 ms
17,588 KB
testcase_29 AC 142 ms
17,828 KB
testcase_30 AC 77 ms
17,712 KB
testcase_31 AC 6,498 ms
21,540 KB
testcase_32 AC 6,516 ms
17,616 KB
testcase_33 AC 8 ms
9,720 KB
testcase_34 AC 1,757 ms
17,748 KB
testcase_35 AC 1,070 ms
17,672 KB
testcase_36 AC 1,743 ms
17,720 KB
testcase_37 AC 9 ms
9,812 KB
testcase_38 AC 6,837 ms
17,824 KB
testcase_39 AC 6,772 ms
17,828 KB
testcase_40 AC 6,604 ms
19,192 KB
testcase_41 TLE -
testcase_42 AC 6,918 ms
18,272 KB
testcase_43 AC 6,592 ms
18,456 KB
testcase_44 AC 6,440 ms
17,772 KB
testcase_45 AC 6,364 ms
18,332 KB
testcase_46 AC 6,507 ms
21,756 KB
testcase_47 AC 6,359 ms
19,016 KB
testcase_48 AC 1,627 ms
17,964 KB
testcase_49 AC 79 ms
17,924 KB
testcase_50 AC 6,614 ms
18,160 KB
testcase_51 AC 6,509 ms
21,844 KB
testcase_52 AC 6,567 ms
18,376 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 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);
    
    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;
        }
        
        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";
}

0