結果

問題 No.1190 Points
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-09-03 00:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 900 ms / 2,000 ms
コード長 1,359 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,280 KB
最終ジャッジ日時 2024-11-22 02:44:27
合計ジャッジ時間 15,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
67,840 KB
testcase_01 AC 57 ms
67,456 KB
testcase_02 AC 58 ms
67,840 KB
testcase_03 AC 521 ms
100,420 KB
testcase_04 AC 473 ms
98,688 KB
testcase_05 AC 437 ms
97,680 KB
testcase_06 AC 589 ms
103,088 KB
testcase_07 AC 625 ms
103,956 KB
testcase_08 AC 645 ms
104,376 KB
testcase_09 AC 709 ms
108,352 KB
testcase_10 AC 658 ms
104,548 KB
testcase_11 AC 581 ms
103,680 KB
testcase_12 AC 688 ms
106,096 KB
testcase_13 AC 571 ms
101,632 KB
testcase_14 AC 160 ms
93,184 KB
testcase_15 AC 845 ms
110,208 KB
testcase_16 AC 227 ms
90,816 KB
testcase_17 AC 788 ms
107,672 KB
testcase_18 AC 400 ms
98,560 KB
testcase_19 AC 152 ms
92,160 KB
testcase_20 AC 510 ms
100,992 KB
testcase_21 AC 292 ms
94,352 KB
testcase_22 AC 206 ms
96,640 KB
testcase_23 AC 900 ms
111,280 KB
testcase_24 AC 881 ms
110,508 KB
testcase_25 AC 582 ms
106,076 KB
testcase_26 AC 306 ms
101,504 KB
testcase_27 AC 593 ms
105,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Points
# 拡張ダイクストラ
import heapq
N, M, P = map(int, input().split())
start, goal = map(int, input().split())
G = [[] for i in range(2*10**5+1)]
for i in range(M):
    u, v = map(int, input().split())
    G[u].append(v+10**5)
    G[v].append(u+10**5)
    G[u+10**5].append(v)
    G[v+10**5].append(u)

que = []
heapq.heapify(que)

d_s = [10**10 for i in range(2*10**5+1)]
d_s[start] = 0
heapq.heappush(que, (0, start))
while que:
    cost, v = heapq.heappop(que)
    if d_s[v] < cost:
        continue

    for e in G[v]:
        if d_s[e] > d_s[v] + 1:
            d_s[e] = d_s[v] + 1
            heapq.heappush(que, (d_s[e], e))

d_g = [10**10 for i in range(2*10**5+1)]
d_g[goal] = 0
heapq.heappush(que, (0, goal))
while que:
    cost, v = heapq.heappop(que)
    if d_g[v] < cost:
        continue

    for e in G[v]:
        if d_g[e] > d_g[v] + 1:
            d_g[e] = d_g[v] + 1
            heapq.heappush(que, (d_g[e], e))

is_accessible = [0 for i in range(N+1)]

for node in range(1, N+1):
    flag = False
    for i in range(2):
        for j in range(2):
            v = d_s[node + i*10**5] + d_g[node+j*10**5]
            if v <= P and v % 2 == P % 2:
                is_accessible[node] = 1

K = sum(is_accessible)
if K == 0:
    print(-1)
    exit()

print(K)
for i in range(1, N+1):
    if is_accessible[i] == 1:
        print(i)
0