結果

問題 No.1400 すごろくで世界旅行
ユーザー mkawa2mkawa2
提出日時 2021-02-19 22:34:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,408 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 184,448 KB
最終ジャッジ日時 2024-09-16 20:50:58
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,264 KB
testcase_01 AC 35 ms
53,888 KB
testcase_02 AC 34 ms
54,016 KB
testcase_03 AC 50 ms
68,352 KB
testcase_04 AC 37 ms
59,648 KB
testcase_05 AC 46 ms
64,512 KB
testcase_06 AC 67 ms
76,912 KB
testcase_07 AC 76 ms
76,640 KB
testcase_08 AC 50 ms
69,760 KB
testcase_09 AC 52 ms
67,584 KB
testcase_10 AC 52 ms
72,192 KB
testcase_11 AC 51 ms
67,752 KB
testcase_12 AC 148 ms
76,672 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
# md = 998244353
md = 10**9+7

from collections import deque

n, D = MI()
to = [[] for _ in range(n)]
for u in range(n):
    vv = BI()
    for v, b in enumerate(vv[u:], u):
        if b == 49:
            to[u].append(v)
            to[v].append(u)
# print(to)


def dijk(s):
    dist = [inf]*n*2
    q = deque()
    q.append((s*2, 0))
    dist[s*2] = 0
    while q:
        u, d = q.popleft()
        u, t = divmod(u, 2)
        nt = 1-t
        for v in to[u]:
            if dist[v*2+nt] != inf: continue
            dist[v*2+nt] = d+1
            if d+1 > D:
                print("No")
                exit()
            q.append((v*2+nt, d+1))
    if max(dist)==inf:
        print("No")
        exit()

for u in range(n): dijk(u)

print("Yes")
0