結果

問題 No.1190 Points
ユーザー buey_tbuey_t
提出日時 2023-04-23 12:03:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 2,484 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,488 KB
最終ジャッジ日時 2024-11-07 19:40:35
合計ジャッジ時間 12,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
84,992 KB
testcase_01 AC 141 ms
84,992 KB
testcase_02 AC 140 ms
84,992 KB
testcase_03 AC 402 ms
112,324 KB
testcase_04 AC 361 ms
109,440 KB
testcase_05 AC 353 ms
109,696 KB
testcase_06 AC 441 ms
116,864 KB
testcase_07 AC 454 ms
121,472 KB
testcase_08 AC 453 ms
127,488 KB
testcase_09 AC 506 ms
122,880 KB
testcase_10 AC 470 ms
127,360 KB
testcase_11 AC 418 ms
113,536 KB
testcase_12 AC 536 ms
124,800 KB
testcase_13 AC 456 ms
109,020 KB
testcase_14 AC 200 ms
98,560 KB
testcase_15 AC 659 ms
124,416 KB
testcase_16 AC 206 ms
94,720 KB
testcase_17 AC 566 ms
120,448 KB
testcase_18 AC 312 ms
96,384 KB
testcase_19 AC 205 ms
103,552 KB
testcase_20 AC 387 ms
104,000 KB
testcase_21 AC 236 ms
94,592 KB
testcase_22 AC 245 ms
112,128 KB
testcase_23 AC 709 ms
125,056 KB
testcase_24 AC 647 ms
125,056 KB
testcase_25 AC 447 ms
113,024 KB
testcase_26 AC 282 ms
112,768 KB
testcase_27 AC 452 ms
113,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
from heapq import heapify, heappop, heappush
from bisect import bisect_left, bisect_right
from copy import deepcopy
import copy
import random
from collections import deque,Counter,defaultdict
from itertools import permutations,combinations
from decimal import Decimal,ROUND_HALF_UP
#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
from functools import lru_cache, reduce
#@lru_cache(maxsize=None)
from operator import add,sub,mul,xor,and_,or_,itemgetter
import sys
input = sys.stdin.readline
# .rstrip()
INF = 10**18
mod1 = 10**9+7
mod2 = 998244353

#DecimalならPython
#再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!


'''
dfsじゃないといけないかも
頂点Gまでの経路
まあ普通にP回まで探索すればいいけど
それまでに通った辺をどうやって管理するか
重複していいならリストでいいのか
逆に、P回移動したときにたどりつく頂点を列挙して
そこからbfsするとか
ちょっと厳しいか?

なるほど
前後からか
ちょっと答え見るの早いかもな
まあ今回はしょうがないとして
'''

N,M,P = map(int, input().split())
S,Go = map(int, input().split())

G = [[] for _ in range(N+1)]

for _ in range(M):
    u,v = map(int, input().split())
    G[u].append(v)
    G[v].append(u)

Q = deque()
Q.append((S,0))

seen = [[INF]*2 for _ in range(N+1)]

while len(Q) > 0:
    pos,cnt = Q.popleft()
    
    seen[pos][cnt%2] = cnt
    
    for nx in G[pos]:
        if seen[nx][(cnt+1)%2] == INF:
            Q.append((nx,cnt+1))
            seen[nx][(cnt+1)%2] = cnt+1

Q = deque()
Q.append((Go,0))

seen2 = [[INF]*2 for _ in range(N+1)]

while len(Q) > 0:
    pos,cnt = Q.popleft()
    
    seen2[pos][cnt%2] = cnt
    
    for nx in G[pos]:
        if seen2[nx][(cnt+1)%2] == INF:
            Q.append((nx,cnt+1))
            seen2[nx][(cnt+1)%2] = cnt+1

ans = []
for i in range(1,N+1):
    if P%2 == 0:
        if seen[i][0]+seen2[i][0] <= P:
            ans.append(i)
            continue
        if seen[i][1]+seen2[i][1] <= P:
            ans.append(i)
            continue
    else:
        if seen[i][1]+seen2[i][0] <= P:
            ans.append(i)
            continue
        if seen[i][0]+seen2[i][1] <= P:
            ans.append(i)
            continue

ans.sort()

if len(ans) == 0:
    print(-1)
    exit()

print(len(ans))
for a in ans:
    print(a)













0