結果

問題 No.2674 k-Walk on Bipartite
ユーザー miho-4miho-4
提出日時 2024-03-15 22:18:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 112,248 KB
最終ジャッジ日時 2024-09-30 01:39:38
合計ジャッジ時間 6,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,992 KB
testcase_01 AC 38 ms
53,720 KB
testcase_02 AC 37 ms
54,056 KB
testcase_03 AC 38 ms
53,920 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
54,676 KB
testcase_07 AC 204 ms
105,252 KB
testcase_08 AC 230 ms
104,756 KB
testcase_09 AC 154 ms
96,684 KB
testcase_10 AC 272 ms
112,248 KB
testcase_11 AC 203 ms
101,744 KB
testcase_12 AC 243 ms
103,764 KB
testcase_13 AC 153 ms
99,668 KB
testcase_14 AC 94 ms
86,504 KB
testcase_15 AC 287 ms
106,796 KB
testcase_16 AC 223 ms
108,116 KB
testcase_17 AC 233 ms
104,776 KB
testcase_18 AC 121 ms
91,460 KB
testcase_19 AC 175 ms
95,680 KB
testcase_20 AC 156 ms
93,192 KB
testcase_21 AC 254 ms
105,816 KB
testcase_22 AC 292 ms
109,160 KB
testcase_23 AC 39 ms
54,588 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
54,224 KB
testcase_27 AC 38 ms
55,040 KB
testcase_28 AC 38 ms
54,644 KB
testcase_29 AC 38 ms
54,444 KB
testcase_30 AC 38 ms
53,576 KB
testcase_31 AC 39 ms
54,724 KB
testcase_32 AC 37 ms
54,672 KB
testcase_33 AC 36 ms
54,332 KB
testcase_34 AC 37 ms
55,416 KB
testcase_35 AC 39 ms
55,272 KB
testcase_36 AC 38 ms
54,828 KB
testcase_37 AC 36 ms
54,852 KB
testcase_38 AC 36 ms
55,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m=map(int,input().split())
s,t,k=map(int,input().split())
edge=[list(map(int,input().split())) for _ in range(m)]

E=[[] for _ in range(n+1)]
for u,v in edge:
  E[v].append(u)
  E[u].append(v)
  
D=[10**9]*(n+1)
P=[-1]*(n+1)
D[s],P[s]=0,0
q=deque([(s)])
while q:
  x=q.popleft()
  for e in E[x]:
    if D[x]+1<D[e]:
      P[e]=P[x]^1
      D[e]=D[x]+1
      q.append(e)

if P[t]==0:
  if k%2==1:
    print("No")
  else:
    if D[t]<=k:
      print("Yes")
    else:
      print("Unknown")
elif P[t]==1:
  if k%2==0:
    print("No")
  else:
    if D[t]<=k:
      print("Yes")
    else:
      print("Unknown")
else:
  if n==1:print("No")
  elif n==2 and k%2==0:print("No")
  else:
    print("Unknown")
0