結果

問題 No.1190 Points
ユーザー titiatitia
提出日時 2020-08-22 15:56:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-10-15 10:05:26
合計ジャッジ時間 16,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 455 ms
28,288 KB
testcase_04 AC 409 ms
25,088 KB
testcase_05 AC 362 ms
27,264 KB
testcase_06 AC 591 ms
29,312 KB
testcase_07 AC 635 ms
36,096 KB
testcase_08 AC 871 ms
47,104 KB
testcase_09 AC 886 ms
37,504 KB
testcase_10 AC 801 ms
40,832 KB
testcase_11 AC 643 ms
30,208 KB
testcase_12 AC 890 ms
38,016 KB
testcase_13 AC 611 ms
27,008 KB
testcase_14 AC 134 ms
20,480 KB
testcase_15 AC 956 ms
37,632 KB
testcase_16 AC 110 ms
14,464 KB
testcase_17 AC 857 ms
35,712 KB
testcase_18 AC 547 ms
21,632 KB
testcase_19 AC 143 ms
22,400 KB
testcase_20 AC 608 ms
24,960 KB
testcase_21 AC 216 ms
18,944 KB
testcase_22 AC 202 ms
25,216 KB
testcase_23 AC 968 ms
38,016 KB
testcase_24 AC 996 ms
38,272 KB
testcase_25 AC 647 ms
29,952 KB
testcase_26 AC 323 ms
29,952 KB
testcase_27 AC 644 ms
30,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

N,M,P=map(int,input().split())
S,G=map(int,input().split())
E=[[] for i in range(N+1)]

for i in range(M):
    x,y=map(int,input().split())
    E[x].append(y)
    E[y].append(x)

SE=[1<<50]*(N+1)
SO=[1<<50]*(N+1)
GE=[1<<50]*(N+1)
GO=[1<<50]*(N+1)

SE[S]=0
GE[G]=0

Q=deque([S])

while Q:
    x=Q.popleft()
    for to in E[x]:
        if SE[x]<1<<50 and SO[to]>SE[x]+1:
            SO[to]=SE[x]+1
            Q.append(to)
        if SO[x]<1<<50 and SE[to]>SO[x]+1:
            SE[to]=SO[x]+1
            Q.append(to)

Q=deque([G])

while Q:
    x=Q.popleft()
    for to in E[x]:
        if GE[x]<1<<50 and GO[to]>GE[x]+1:
            GO[to]=GE[x]+1
            Q.append(to)
        if GO[x]<1<<50 and GE[to]>GO[x]+1:
            GE[to]=GO[x]+1
            Q.append(to)

ANS=[]
for i in range(1,N+1):
    if P%2==0:
        if SE[i]+GE[i]<=P:
            ANS.append(i)
        elif SO[i]+GO[i]<=P:
            ANS.append(i)
    else:
        if SE[i]+GO[i]<=P:
            ANS.append(i)
        elif SO[i]+GE[i]<=P:
            ANS.append(i)

ANS.sort()
if len(ANS)==0:
    print(-1)
else:
    print(len(ANS))
    print("\n".join(map(str,ANS)))
0