結果

問題 No.1190 Points
ユーザー ああいいああいい
提出日時 2022-02-23 11:48:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 118,628 KB
最終ジャッジ日時 2024-07-01 11:55:11
合計ジャッジ時間 10,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,180 KB
testcase_01 AC 41 ms
54,728 KB
testcase_02 AC 41 ms
54,248 KB
testcase_03 AC 336 ms
102,100 KB
testcase_04 AC 285 ms
96,044 KB
testcase_05 AC 283 ms
97,624 KB
testcase_06 AC 371 ms
104,132 KB
testcase_07 AC 395 ms
111,944 KB
testcase_08 AC 363 ms
118,628 KB
testcase_09 AC 460 ms
113,740 KB
testcase_10 AC 386 ms
118,552 KB
testcase_11 AC 344 ms
103,380 KB
testcase_12 AC 463 ms
115,872 KB
testcase_13 AC 369 ms
97,432 KB
testcase_14 AC 128 ms
89,740 KB
testcase_15 AC 590 ms
114,644 KB
testcase_16 AC 118 ms
78,548 KB
testcase_17 AC 523 ms
110,892 KB
testcase_18 AC 234 ms
86,476 KB
testcase_19 AC 130 ms
97,140 KB
testcase_20 AC 314 ms
91,648 KB
testcase_21 AC 161 ms
83,592 KB
testcase_22 AC 165 ms
98,480 KB
testcase_23 AC 600 ms
114,964 KB
testcase_24 AC 549 ms
114,828 KB
testcase_25 AC 398 ms
105,108 KB
testcase_26 AC 204 ms
88,516 KB
testcase_27 AC 387 ms
105,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N,M,P = map(int,input().split())
S,GG = 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)
inf = 10 ** 10
ds = [[inf] * 2 for _ in range(N+1)]
dg = [[inf] * 2 for _ in range(N+1)]
ds[S][0] = 0
dg[GG][0] = 0
from collections import deque
q = deque()
q.append((S,0))
while q:
    now,flag = q.popleft()
    for v in G[now]:
        if ds[v][1-flag] == inf:
            ds[v][1-flag] = ds[now][flag] + 1
            q.append((v,1-flag))
q.append((GG,0))
while q:
    now,flag = q.popleft()
    for v in G[now]:
        if dg[v][1-flag] == inf:
            dg[v][1-flag] = dg[now][flag] + 1
            q.append((v,1-flag))

ans = []
if P % 2 == 0:
    for i in range(1,N+1):
        if ds[i][0] + dg[i][0] <= P or ds[i][1] + dg[i][1] <= P:
            ans.append(i)
else:
    for i in range(1,N+1):
        if ds[i][1] + dg[i][0] <= P or ds[i][0] + dg[i][1] <= P:
            ans.append(i)
if len(ans) == 0:
    print(-1)
else:
    print(len(ans))
    print(*ans,sep="\n")
0