結果

問題 No.2658 L-R Nim
ユーザー mkawa2mkawa2
提出日時 2024-07-06 14:47:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,677 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 313,524 KB
最終ジャッジ日時 2024-07-06 14:48:15
合計ジャッジ時間 29,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,404 KB
testcase_01 AC 54 ms
67,568 KB
testcase_02 AC 59 ms
67,824 KB
testcase_03 AC 51 ms
67,124 KB
testcase_04 AC 39 ms
55,420 KB
testcase_05 AC 68 ms
77,808 KB
testcase_06 AC 1,426 ms
120,292 KB
testcase_07 AC 75 ms
78,672 KB
testcase_08 AC 67 ms
77,696 KB
testcase_09 AC 1,446 ms
120,464 KB
testcase_10 AC 1,474 ms
120,208 KB
testcase_11 AC 1,152 ms
111,640 KB
testcase_12 AC 1,474 ms
120,416 KB
testcase_13 AC 1,448 ms
120,576 KB
testcase_14 AC 1,436 ms
120,340 KB
testcase_15 AC 69 ms
78,192 KB
testcase_16 AC 1,430 ms
120,340 KB
testcase_17 AC 1,440 ms
120,088 KB
testcase_18 AC 1,466 ms
120,552 KB
testcase_19 AC 1,469 ms
120,708 KB
testcase_20 AC 339 ms
87,816 KB
testcase_21 AC 1,430 ms
120,628 KB
testcase_22 AC 1,445 ms
120,312 KB
testcase_23 AC 74 ms
77,884 KB
testcase_24 AC 613 ms
95,188 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from collections import defaultdict

n,k=LI()
aa=LI()

cs=[0]
for a in aa:cs.append(cs[-1]^a)

pre=defaultdict(lambda :-1)
cnt=0
imo=[0]*(n+1)
for i,b in enumerate(cs):
    if pre[b]!=-1:
        j=pre[b]
        imo[j]+=1
        imo[i]-=1
        cnt+=1
    pre[b]=i
# pDB(cs)

if not pre:
    print("Yes")
    exit()

for i in range(n):imo[i+1]+=imo[i]
# pDB(imo)

def ok(x):
    ng=[0]*(n+2)
    pos={}
    for i,b in enumerate(cs):
        if x^b in pos:
            j=pos[x^b]
            ng[j]+=1
            ng[i]-=1
        if b not in pos:
            pos[b]=i
    # print(pos,ng)
    for i in range(n):
        ng[i+1]+=ng[i]
        if ng[i]==0 and imo[i]==cnt and abs((aa[i]^x)-aa[i])<=k:
            # print(x,i)
            return True
    return False

for u in range(14):
    u=(1<<u)-1<<7
    for x in range(u,u+128):
        if ok(x):
            print("Yes")
            exit()
print("No")
0