結果

問題 No.1400 すごろくで世界旅行
ユーザー convexineqconvexineq
提出日時 2021-02-20 01:16:57
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 451 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 78,296 KB
最終ジャッジ日時 2023-10-17 05:49:14
合計ジャッジ時間 6,474 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
53,512 KB
testcase_01 AC 29 ms
53,516 KB
testcase_02 AC 29 ms
53,512 KB
testcase_03 AC 37 ms
63,712 KB
testcase_04 AC 29 ms
53,516 KB
testcase_05 AC 35 ms
59,412 KB
testcase_06 AC 49 ms
74,944 KB
testcase_07 AC 56 ms
74,984 KB
testcase_08 AC 38 ms
61,648 KB
testcase_09 AC 36 ms
61,644 KB
testcase_10 AC 39 ms
65,748 KB
testcase_11 AC 35 ms
61,648 KB
testcase_12 AC 96 ms
75,040 KB
testcase_13 AC 154 ms
76,492 KB
testcase_14 TLE -
testcase_15 AC 140 ms
76,424 KB
testcase_16 AC 109 ms
75,920 KB
testcase_17 AC 135 ms
76,496 KB
testcase_18 AC 133 ms
76,436 KB
testcase_19 AC 31 ms
53,512 KB
testcase_20 AC 29 ms
53,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(i):
    p = dp = 0
    q = dq = 1<<i
    for k in range(d):
        np = p
        while dq:
            x = dq&-dq
            np |= e[x.bit_length()-1]
            dq -= x
        dq,q,p = np^p, np|p, q
        if q == M: return 1
    return 0

v,d = map(int,input().split())
d = min(4001,d)
e = [int(input()[::-1],2) for _ in range(v)]
M = (1<<v) - 1
for i in range(v):
    if not check(i):
        print("No")
        exit()
print("Yes")
0