結果

問題 No.2658 L-R Nim
ユーザー 👑 NachiaNachia
提出日時 2024-03-02 00:02:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 960 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 77,644 KB
実行使用メモリ 14,516 KB
最終ジャッジ日時 2024-09-29 15:34:51
合計ジャッジ時間 34,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,344 KB
testcase_01 AC 3 ms
7,256 KB
testcase_02 AC 3 ms
7,292 KB
testcase_03 AC 3 ms
7,280 KB
testcase_04 AC 2 ms
7,376 KB
testcase_05 AC 49 ms
7,420 KB
testcase_06 AC 78 ms
7,348 KB
testcase_07 AC 50 ms
7,460 KB
testcase_08 AC 137 ms
7,452 KB
testcase_09 AC 98 ms
7,520 KB
testcase_10 AC 67 ms
7,344 KB
testcase_11 AC 61 ms
7,316 KB
testcase_12 AC 76 ms
7,316 KB
testcase_13 AC 71 ms
7,352 KB
testcase_14 AC 78 ms
7,376 KB
testcase_15 AC 121 ms
7,524 KB
testcase_16 AC 74 ms
7,380 KB
testcase_17 AC 80 ms
7,336 KB
testcase_18 AC 76 ms
7,404 KB
testcase_19 AC 73 ms
7,420 KB
testcase_20 AC 60 ms
7,384 KB
testcase_21 AC 66 ms
7,316 KB
testcase_22 AC 59 ms
7,352 KB
testcase_23 AC 57 ms
7,352 KB
testcase_24 AC 77 ms
7,424 KB
testcase_25 AC 4,527 ms
7,744 KB
testcase_26 AC 4,960 ms
7,764 KB
testcase_27 AC 3,934 ms
7,684 KB
testcase_28 AC 4,749 ms
7,800 KB
testcase_29 AC 1,710 ms
7,748 KB
testcase_30 AC 1,654 ms
7,812 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,017 ms
7,720 KB
testcase_34 AC 2,945 ms
7,796 KB
testcase_35 AC 1,640 ms
7,608 KB
testcase_36 AC 3,027 ms
7,900 KB
testcase_37 AC 816 ms
7,568 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 2,984 ms
7,856 KB
testcase_49 AC 1,557 ms
7,680 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 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;
    rep(i,N+1) rep(j,i) if(XOR[i] == XOR[j]){
        l = max(l, j);
        r = min(r, i);
    }
    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