結果

問題 No.1190 Points
ユーザー mkawa2mkawa2
提出日時 2021-07-16 09:40:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,019 ms / 2,000 ms
コード長 1,331 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-07-05 18:09:31
合計ジャッジ時間 17,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 530 ms
36,736 KB
testcase_04 AC 462 ms
34,176 KB
testcase_05 AC 416 ms
32,384 KB
testcase_06 AC 661 ms
42,368 KB
testcase_07 AC 748 ms
46,592 KB
testcase_08 AC 854 ms
55,168 KB
testcase_09 AC 828 ms
45,952 KB
testcase_10 AC 790 ms
48,896 KB
testcase_11 AC 618 ms
36,992 KB
testcase_12 AC 808 ms
47,232 KB
testcase_13 AC 576 ms
32,384 KB
testcase_14 AC 241 ms
29,952 KB
testcase_15 AC 1,019 ms
47,744 KB
testcase_16 AC 120 ms
17,280 KB
testcase_17 AC 915 ms
45,952 KB
testcase_18 AC 415 ms
24,192 KB
testcase_19 AC 293 ms
35,456 KB
testcase_20 AC 529 ms
28,672 KB
testcase_21 AC 248 ms
25,984 KB
testcase_22 AC 373 ms
37,760 KB
testcase_23 AC 1,005 ms
49,024 KB
testcase_24 AC 1,011 ms
49,152 KB
testcase_25 AC 736 ms
46,336 KB
testcase_26 AC 538 ms
44,288 KB
testcase_27 AC 740 ms
46,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

from collections import deque

n, m, p = LI()
s, g = LI1()
to = [[] for _ in range(n)]
for _ in range(m):
    u, v = LI1()
    to[u].append(v)
    to[v].append(u)

def bfs(s):
    dist = [[inf]*2 for _ in range(n)]
    dist[s][0] = 0
    q = deque()
    q.append((s, 0))
    while q:
        u, p = q.popleft()
        d = dist[u][p]
        for v in to[u]:
            if dist[v][1-p] == inf:
                dist[v][1-p] = d+1
                q.append((v, 1-p))
    return dist

ds = bfs(s)
dg = bfs(g)
parity = p & 1
ans = []
for u in range(n):
    if ds[u][0]+dg[u][parity] <= p or ds[u][1]+dg[u][1-parity] <= p:
        ans.append(u+1)

if ans:
    print(len(ans))
    for a in ans: print(a)
else:
    print(-1)
0