結果

問題 No.1190 Points
ユーザー ああいいああいい
提出日時 2022-02-23 11:46:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 118,524 KB
最終ジャッジ日時 2024-07-01 11:53:59
合計ジャッジ時間 11,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,544 KB
testcase_01 AC 45 ms
54,476 KB
testcase_02 AC 41 ms
54,216 KB
testcase_03 AC 336 ms
101,820 KB
testcase_04 AC 287 ms
95,228 KB
testcase_05 AC 276 ms
96,960 KB
testcase_06 AC 367 ms
103,256 KB
testcase_07 AC 385 ms
111,584 KB
testcase_08 AC 358 ms
118,216 KB
testcase_09 AC 420 ms
113,380 KB
testcase_10 AC 384 ms
118,524 KB
testcase_11 AC 313 ms
103,216 KB
testcase_12 AC 421 ms
115,520 KB
testcase_13 AC 341 ms
97,076 KB
testcase_14 WA -
testcase_15 AC 553 ms
114,404 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 290 ms
91,700 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 592 ms
114,700 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 ** 8
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