結果

問題 No.1190 Points
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-18 15:38:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 1,227 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,820 KB
実行使用メモリ 116,904 KB
最終ジャッジ日時 2024-06-22 09:18:36
合計ジャッジ時間 10,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,088 KB
testcase_01 AC 43 ms
55,072 KB
testcase_02 AC 43 ms
55,504 KB
testcase_03 AC 314 ms
98,284 KB
testcase_04 AC 285 ms
94,968 KB
testcase_05 AC 270 ms
97,508 KB
testcase_06 AC 343 ms
102,020 KB
testcase_07 AC 361 ms
109,308 KB
testcase_08 AC 363 ms
116,904 KB
testcase_09 AC 401 ms
114,288 KB
testcase_10 AC 371 ms
115,964 KB
testcase_11 AC 328 ms
103,464 KB
testcase_12 AC 446 ms
114,664 KB
testcase_13 AC 351 ms
99,176 KB
testcase_14 AC 112 ms
83,200 KB
testcase_15 AC 474 ms
113,916 KB
testcase_16 AC 130 ms
81,680 KB
testcase_17 AC 415 ms
109,220 KB
testcase_18 AC 237 ms
92,828 KB
testcase_19 AC 100 ms
82,388 KB
testcase_20 AC 299 ms
97,828 KB
testcase_21 AC 169 ms
87,540 KB
testcase_22 AC 136 ms
87,192 KB
testcase_23 AC 513 ms
114,936 KB
testcase_24 AC 462 ms
111,624 KB
testcase_25 AC 345 ms
103,548 KB
testcase_26 AC 192 ms
92,884 KB
testcase_27 AC 328 ms
103,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p=map(int,input().split())
s,t=map(int,input().split())
uv=[list(map(int,input().split())) for _ in range(m)]
g=[[] for _ in range(n)]
for u,v in uv:
  u,v=u-1,v-1
  g[u].append(v)
  g[v].append(u)
s,t=s-1,t-1
inf=float('inf')
fromsev=[inf]*n
fromtev=[inf]*n
fromsod=[inf]*n
fromtod=[inf]*n
from collections import deque
todo=deque([[s,0]])
fromsev[s]=0
while todo:
  v,d=todo.popleft()
  for nv in g[v]:
    if (d+1)%2==0:
      if fromsev[nv]>d+1:
        fromsev[nv]=d+1
        todo.append([nv,d+1])
    else:
      if fromsod[nv]>d+1:
        fromsod[nv]=d+1
        todo.append([nv,d+1])
todo=deque([[t,0]])
fromtev[t]=0
while todo:
  v,d=todo.popleft()
  for nv in g[v]:
    if (d+1)%2==0:
      if fromtev[nv]>d+1:
        fromtev[nv]=d+1
        todo.append([nv,d+1])
    else:
      if fromtod[nv]>d+1:
        fromtod[nv]=d+1
        todo.append([nv,d+1])
ans=[]
if p%2==0:
  for i in range(n):
    if fromsev[i]+fromtev[i]<=p:
      ans.append(i+1)
    elif fromsod[i]+fromtod[i]<=p:
      ans.append(i+1)
else:
  for i in range(n):
    if fromsev[i]+fromtod[i]<=p:
      ans.append(i+1)
    elif fromsod[i]+fromtev[i]<=p:
      ans.append(i+1)
if ans:
  print(len(ans))
  print(*ans,sep='\n')
else:
  print(-1)
0