結果

問題 No.2674 k-Walk on Bipartite
ユーザー titiatitia
提出日時 2024-03-17 03:11:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-09-30 04:37:09
合計ジャッジ時間 8,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 342 ms
36,476 KB
testcase_08 AC 473 ms
36,628 KB
testcase_09 WA -
testcase_10 AC 598 ms
41,856 KB
testcase_11 WA -
testcase_12 AC 679 ms
38,644 KB
testcase_13 WA -
testcase_14 AC 104 ms
23,936 KB
testcase_15 AC 797 ms
44,672 KB
testcase_16 AC 453 ms
39,936 KB
testcase_17 AC 506 ms
35,328 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 260 ms
34,048 KB
testcase_21 AC 488 ms
37,632 KB
testcase_22 WA -
testcase_23 AC 27 ms
10,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 25 ms
10,752 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 24 ms
10,752 KB
testcase_32 AC 24 ms
10,624 KB
testcase_33 AC 25 ms
10,752 KB
testcase_34 AC 24 ms
10,624 KB
testcase_35 AC 25 ms
10,624 KB
testcase_36 AC 25 ms
10,752 KB
testcase_37 AC 24 ms
10,880 KB
testcase_38 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
s,t,k=map(int,input().split())
s-=1
t-=1

E=[[] for i in range(N)]

for i in range(M):
    u,v=map(int,input().split())
    u-=1
    v-=1
    E[u].append(v)
    E[v].append(u)

DIS=[-1]*N
Q=[s]
DIS[s]=0
LIST=[]

while Q:
    x=Q.pop()
    LIST.append(x)
    for to in E[x]:
        if DIS[to]==-1:
            DIS[to]=DIS[x]+1
            Q.append(to)

if 0<=DIS[t]<=k:
    if (DIS[t]-k)%2==0:
        print("Yes")
    else:
        print("No")
    exit()

if DIS[t]>k:
    if (DIS[t]-k)%2==0:
        print("Unknown")
    else:
        print("No")
    exit()

DIS2=[-1]*N
Q=[t]
DIS2[t]=0
LIST2=[]

while Q:
    x=Q.pop()
    LIST2.append(x)
    for to in E[x]:
        if DIS2[to]==-1:
            DIS2[to]=DIS2[x]+1
            Q.append(to)


if max(DIS)+max(DIS2)+1<=k:
    print("Yes")
else:
    print("Unknown")

0