結果

問題 No.2658 L-R Nim
ユーザー mkawa2mkawa2
提出日時 2024-07-05 23:55:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,678 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 312,056 KB
最終ジャッジ日時 2024-07-05 23:56:29
合計ジャッジ時間 33,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,760 KB
testcase_01 AC 65 ms
67,200 KB
testcase_02 AC 67 ms
67,584 KB
testcase_03 AC 63 ms
66,432 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 83 ms
77,440 KB
testcase_06 AC 1,527 ms
120,032 KB
testcase_07 AC 93 ms
78,720 KB
testcase_08 AC 81 ms
77,696 KB
testcase_09 AC 1,521 ms
119,948 KB
testcase_10 AC 1,550 ms
120,208 KB
testcase_11 WA -
testcase_12 AC 1,555 ms
120,036 KB
testcase_13 AC 1,558 ms
120,448 KB
testcase_14 AC 1,544 ms
120,080 KB
testcase_15 AC 87 ms
78,208 KB
testcase_16 AC 1,523 ms
120,344 KB
testcase_17 AC 1,550 ms
119,960 KB
testcase_18 AC 1,530 ms
120,448 KB
testcase_19 AC 1,583 ms
120,092 KB
testcase_20 WA -
testcase_21 AC 1,563 ms
120,244 KB
testcase_22 AC 1,565 ms
120,320 KB
testcase_23 AC 85 ms
77,696 KB
testcase_24 WA -
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<<13
    for x in range(u,u+128):
        if ok(x):
            print("Yes")
            exit()
print("No")
0