結果

問題 No.2674 k-Walk on Bipartite
ユーザー mkawa2mkawa2
提出日時 2024-03-15 22:43:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,304 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 97,828 KB
最終ジャッジ日時 2024-09-30 02:10:31
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,616 KB
testcase_01 AC 45 ms
54,992 KB
testcase_02 AC 44 ms
54,104 KB
testcase_03 AC 43 ms
54,372 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
54,792 KB
testcase_07 AC 234 ms
93,540 KB
testcase_08 AC 289 ms
91,448 KB
testcase_09 AC 185 ms
92,712 KB
testcase_10 AC 354 ms
93,192 KB
testcase_11 AC 242 ms
90,152 KB
testcase_12 AC 318 ms
91,584 KB
testcase_13 AC 177 ms
90,920 KB
testcase_14 AC 91 ms
83,412 KB
testcase_15 AC 378 ms
95,324 KB
testcase_16 AC 273 ms
94,864 KB
testcase_17 AC 278 ms
89,744 KB
testcase_18 AC 129 ms
86,328 KB
testcase_19 AC 206 ms
91,992 KB
testcase_20 AC 188 ms
92,020 KB
testcase_21 AC 279 ms
91,552 KB
testcase_22 AC 390 ms
97,828 KB
testcase_23 AC 43 ms
54,380 KB
testcase_24 AC 43 ms
54,820 KB
testcase_25 AC 42 ms
55,468 KB
testcase_26 AC 43 ms
55,960 KB
testcase_27 AC 42 ms
54,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
54,760 KB
testcase_31 AC 42 ms
55,592 KB
testcase_32 AC 41 ms
54,324 KB
testcase_33 AC 41 ms
55,148 KB
testcase_34 AC 42 ms
54,396 KB
testcase_35 AC 42 ms
53,936 KB
testcase_36 AC 42 ms
55,228 KB
testcase_37 AC 41 ms
54,852 KB
testcase_38 AC 41 ms
54,676 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 s==t and k&1:
    print("No")
elif 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