結果

問題 No.2658 L-R Nim
ユーザー 👑 NachiaNachia
提出日時 2024-03-02 00:07:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6,600 ms / 7,000 ms
コード長 1,179 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 78,800 KB
実行使用メモリ 7,856 KB
最終ジャッジ日時 2024-09-29 15:37:42
合計ジャッジ時間 118,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,632 KB
testcase_01 AC 4 ms
7,288 KB
testcase_02 AC 5 ms
7,600 KB
testcase_03 AC 4 ms
7,308 KB
testcase_04 AC 5 ms
7,576 KB
testcase_05 AC 13 ms
7,576 KB
testcase_06 AC 6 ms
7,368 KB
testcase_07 AC 15 ms
7,536 KB
testcase_08 AC 108 ms
7,584 KB
testcase_09 AC 66 ms
7,652 KB
testcase_10 AC 7 ms
7,492 KB
testcase_11 AC 29 ms
7,676 KB
testcase_12 AC 6 ms
7,340 KB
testcase_13 AC 6 ms
7,360 KB
testcase_14 AC 7 ms
7,344 KB
testcase_15 AC 95 ms
7,608 KB
testcase_16 AC 6 ms
7,340 KB
testcase_17 AC 49 ms
7,656 KB
testcase_18 AC 45 ms
7,604 KB
testcase_19 AC 6 ms
7,344 KB
testcase_20 AC 28 ms
7,592 KB
testcase_21 AC 6 ms
7,400 KB
testcase_22 AC 6 ms
7,376 KB
testcase_23 AC 24 ms
7,672 KB
testcase_24 AC 46 ms
7,444 KB
testcase_25 AC 3,280 ms
7,700 KB
testcase_26 AC 3,713 ms
7,684 KB
testcase_27 AC 2,669 ms
7,676 KB
testcase_28 AC 3,417 ms
7,740 KB
testcase_29 AC 152 ms
7,680 KB
testcase_30 AC 87 ms
7,720 KB
testcase_31 AC 6,369 ms
7,724 KB
testcase_32 AC 6,253 ms
7,856 KB
testcase_33 AC 13 ms
7,544 KB
testcase_34 AC 1,637 ms
7,744 KB
testcase_35 AC 1,146 ms
7,668 KB
testcase_36 AC 1,649 ms
7,724 KB
testcase_37 AC 16 ms
7,628 KB
testcase_38 AC 6,381 ms
7,748 KB
testcase_39 AC 6,458 ms
7,708 KB
testcase_40 AC 6,457 ms
7,724 KB
testcase_41 AC 6,600 ms
7,708 KB
testcase_42 AC 6,535 ms
7,844 KB
testcase_43 AC 6,396 ms
7,760 KB
testcase_44 AC 6,416 ms
7,712 KB
testcase_45 AC 6,507 ms
7,764 KB
testcase_46 AC 6,535 ms
7,760 KB
testcase_47 AC 6,382 ms
7,752 KB
testcase_48 AC 1,631 ms
7,700 KB
testcase_49 AC 88 ms
7,840 KB
testcase_50 AC 6,310 ms
7,748 KB
testcase_51 AC 6,576 ms
7,836 KB
testcase_52 AC 6,369 ms
7,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// N^2

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
using namespace std;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define repr(i,n) for(int i=(int)(n)-1; i>=0; i--)

int main(){
    int MAX_XOR = 1 << 20;
    int N, K; cin >> N >> K;
    vector<int> A(N); rep(i,N) cin >> A[i];
    vector<int> XOR(N+1);
    rep(i,N) XOR[i+1] = XOR[i] ^ A[i];
    int l = 0, r = N; {
        vector<int> lastseen(MAX_XOR, -1);
        rep(i,N+1){
            if(lastseen[XOR[i]] != -1){
                l = max(l, lastseen[XOR[i]]);
                r = min(r, i);
            }
            lastseen[XOR[i]] = i;
        }
    }
    if(r <= l){ cout << "No\n"; return 0; }
    vector<int> C(1048576);
    for(int i=0; i<=l; i++) for(int j=l+1; j<=N; j++) C[XOR[i]^XOR[j]]++;
    for(int p=l; p<r; p++){
        if(p != l){
            for(int i=0; i<p; i++) C[XOR[i]^XOR[p]]--;
            for(int i=p+1; i<=N; i++) C[XOR[p]^XOR[i]]++;
        }
        for(int d=-min(A[p],K); d<=K; d++){
            int dx = A[p] ^ (A[p] + d);
            if(C[dx] == 0){ cout << "Yes\n"; return 0; }
        }
    }
    cout << "No\n";
    return 0;
}
0