結果

問題 No.1812 Uribo Road
ユーザー 👑 rin204rin204
提出日時 2022-01-20 22:36:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 828 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 1,121,924 KB
最終ジャッジ日時 2024-11-24 08:13:48
合計ジャッジ時間 77,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,728 KB
testcase_01 AC 34 ms
277,576 KB
testcase_02 AC 37 ms
232,032 KB
testcase_03 AC 196 ms
254,280 KB
testcase_04 AC 36 ms
60,196 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 656 ms
230,732 KB
testcase_10 AC 264 ms
78,980 KB
testcase_11 AC 182 ms
78,372 KB
testcase_12 TLE -
testcase_13 AC 529 ms
401,280 KB
testcase_14 AC 664 ms
401,296 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 944 ms
92,704 KB
testcase_24 AC 65 ms
72,192 KB
testcase_25 AC 248 ms
83,164 KB
testcase_26 AC 144 ms
78,572 KB
testcase_27 TLE -
testcase_28 AC 388 ms
86,812 KB
testcase_29 AC 37 ms
52,992 KB
testcase_30 AC 295 ms
80,284 KB
testcase_31 TLE -
testcase_32 AC 174 ms
77,412 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m, k = map(int, input().split())
R = list(map(int, input().split()))
R = {r - 1:1 << i for i, r in enumerate(R)}
edges = [[] for _ in range(n)]
for i in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    if i in R:
        d = R[i]
    else:
        d = -1
    edges[a].append((b, c, d))
    edges[b].append((a, c, d))
    
inf = 1 << 40
dist = [[inf] * (1 << k) for _ in range(n)]
dist[0][0] = 0
hq = [(0, 0, 0)]
while hq:
    d, pos, bit = heappop(hq)
    if d > dist[pos][bit]:
        continue
    
    for npos, c, dbit in edges[pos]:
        if dbit == -1:
            nbit = bit
        else:
            nbit = bit | dbit
        
        if dist[npos][nbit] > c + d:
            dist[npos][nbit] = c + d
            heappush(hq, (c + d, npos, nbit))
print(dist[-1][-1])
0