結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,404 KB
testcase_01 AC 38 ms
54,828 KB
testcase_02 AC 37 ms
54,072 KB
testcase_03 AC 40 ms
54,476 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
54,308 KB
testcase_07 AC 179 ms
93,852 KB
testcase_08 AC 205 ms
91,364 KB
testcase_09 AC 145 ms
92,584 KB
testcase_10 AC 252 ms
93,280 KB
testcase_11 AC 178 ms
90,240 KB
testcase_12 AC 240 ms
91,340 KB
testcase_13 AC 148 ms
90,904 KB
testcase_14 AC 79 ms
83,696 KB
testcase_15 AC 274 ms
95,480 KB
testcase_16 AC 204 ms
94,848 KB
testcase_17 AC 196 ms
89,880 KB
testcase_18 AC 100 ms
86,472 KB
testcase_19 AC 158 ms
92,428 KB
testcase_20 AC 145 ms
92,100 KB
testcase_21 AC 206 ms
91,912 KB
testcase_22 AC 288 ms
97,644 KB
testcase_23 AC 36 ms
54,104 KB
testcase_24 AC 36 ms
54,656 KB
testcase_25 AC 36 ms
54,416 KB
testcase_26 AC 36 ms
54,500 KB
testcase_27 AC 35 ms
55,140 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
55,132 KB
testcase_31 AC 35 ms
54,384 KB
testcase_32 AC 36 ms
55,328 KB
testcase_33 AC 36 ms
54,076 KB
testcase_34 AC 35 ms
54,188 KB
testcase_35 AC 36 ms
55,888 KB
testcase_36 AC 37 ms
54,456 KB
testcase_37 AC 36 ms
55,308 KB
testcase_38 AC 36 ms
55,748 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 dist[t]!=-1 and dist[t]&1==k&1 and dist[t]<=k and to[s]:
    print("Yes")
elif dist[t]!=-1 and dist[t]&1!=k&1:
    print("No")
else:
    print("Unknown")
0