結果

問題 No.2674 k-Walk on Bipartite
ユーザー titiatitia
提出日時 2024-03-17 03:18:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-09-30 04:38:01
合計ジャッジ時間 8,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 28 ms
11,008 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 354 ms
36,864 KB
testcase_08 AC 506 ms
36,812 KB
testcase_09 AC 281 ms
36,224 KB
testcase_10 AC 627 ms
41,856 KB
testcase_11 AC 364 ms
35,072 KB
testcase_12 AC 606 ms
38,784 KB
testcase_13 AC 252 ms
33,152 KB
testcase_14 AC 104 ms
24,192 KB
testcase_15 AC 690 ms
44,800 KB
testcase_16 AC 435 ms
40,192 KB
testcase_17 AC 481 ms
35,712 KB
testcase_18 AC 154 ms
26,496 KB
testcase_19 AC 306 ms
35,200 KB
testcase_20 AC 268 ms
33,920 KB
testcase_21 AC 521 ms
37,888 KB
testcase_22 AC 719 ms
49,792 KB
testcase_23 AC 28 ms
10,880 KB
testcase_24 AC 27 ms
10,880 KB
testcase_25 AC 26 ms
11,008 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 25 ms
10,880 KB
testcase_28 AC 27 ms
10,880 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 28 ms
10,880 KB
testcase_31 AC 27 ms
11,008 KB
testcase_32 AC 25 ms
11,008 KB
testcase_33 AC 26 ms
10,880 KB
testcase_34 AC 28 ms
11,008 KB
testcase_35 AC 27 ms
11,008 KB
testcase_36 AC 27 ms
11,008 KB
testcase_37 AC 26 ms
10,752 KB
testcase_38 AC 27 ms
11,008 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 and len(LIST)>1:
    if (DIS[t]-k)%2==0:
        print("Yes")
    else:
        print("No")
    exit()

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

if DIS[t]==0 and len(LIST)==1:
    if N==1:
        if k==0:
            print("Yes")
        else:
            print("No")
    else:
        if k==0:
            print("Yes")
        elif 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 len(LIST)==1 and len(LIST2)==1:
    if k%2==0:
        print("No")
    else:
        print("Unknown")
else:
    print("Unknown")

0