結果

問題 No.2674 k-Walk on Bipartite
ユーザー mkawa2mkawa2
提出日時 2024-03-15 22:40:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,269 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 97,588 KB
最終ジャッジ日時 2024-09-30 02:08:18
合計ジャッジ時間 5,906 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,980 KB
testcase_01 AC 45 ms
55,488 KB
testcase_02 AC 44 ms
55,140 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 207 ms
93,552 KB
testcase_08 AC 224 ms
91,560 KB
testcase_09 AC 158 ms
93,076 KB
testcase_10 AC 282 ms
93,696 KB
testcase_11 AC 208 ms
90,344 KB
testcase_12 AC 244 ms
91,272 KB
testcase_13 AC 159 ms
90,832 KB
testcase_14 AC 84 ms
83,828 KB
testcase_15 AC 303 ms
95,248 KB
testcase_16 AC 235 ms
94,900 KB
testcase_17 AC 247 ms
89,944 KB
testcase_18 AC 115 ms
86,188 KB
testcase_19 AC 184 ms
92,052 KB
testcase_20 AC 169 ms
92,232 KB
testcase_21 AC 239 ms
91,436 KB
testcase_22 AC 344 ms
97,588 KB
testcase_23 WA -
testcase_24 AC 40 ms
54,488 KB
testcase_25 AC 41 ms
55,672 KB
testcase_26 WA -
testcase_27 AC 41 ms
53,888 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 40 ms
54,696 KB
testcase_31 AC 39 ms
54,860 KB
testcase_32 AC 40 ms
54,140 KB
testcase_33 AC 40 ms
54,052 KB
testcase_34 AC 40 ms
54,664 KB
testcase_35 AC 39 ms
54,524 KB
testcase_36 AC 40 ms
55,020 KB
testcase_37 AC 40 ms
54,360 KB
testcase_38 AC 41 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# 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 deque

n,m=LI()
s,t,k=LI()
s,t=s-1,t-1
to=[[] for _ in range(n)]
for _ in range(m):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)

dist=[-1]*n
dist[s]=0
q=deque()
q.append(s)
while q:
    u=q.popleft()
    for v in to[u]:
        if dist[v]==-1:
            dist[v]=dist[u]+1
            q.append(v)

if not to[s] or dist[t]==-1:
    print("Unknown")
elif dist[t]&1==k&1:
    if dist[t]<=k:
        print("Yes")
    else:
        print("Unknown")
else:
    print("No")
0