結果

問題 No.1812 Uribo Road
ユーザー 👑 rin204rin204
提出日時 2022-01-20 22:39:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 940 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 685,248 KB
最終ジャッジ日時 2024-11-24 08:22:46
合計ジャッジ時間 64,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
463,616 KB
testcase_01 AC 41 ms
60,560 KB
testcase_02 AC 41 ms
335,956 KB
testcase_03 MLE -
testcase_04 AC 35 ms
57,600 KB
testcase_05 AC 35 ms
503,492 KB
testcase_06 AC 39 ms
499,160 KB
testcase_07 AC 43 ms
64,512 KB
testcase_08 AC 217 ms
78,080 KB
testcase_09 AC 224 ms
79,104 KB
testcase_10 AC 171 ms
77,524 KB
testcase_11 AC 142 ms
77,164 KB
testcase_12 TLE -
testcase_13 AC 458 ms
400,760 KB
testcase_14 AC 516 ms
400,896 KB
testcase_15 AC 1,131 ms
102,444 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 3,766 ms
107,236 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 349 ms
80,424 KB
testcase_24 AC 68 ms
71,808 KB
testcase_25 AC 220 ms
82,372 KB
testcase_26 AC 132 ms
77,916 KB
testcase_27 AC 1,931 ms
88,016 KB
testcase_28 AC 265 ms
84,232 KB
testcase_29 AC 35 ms
52,864 KB
testcase_30 AC 175 ms
78,080 KB
testcase_31 TLE -
testcase_32 AC 120 ms
77,188 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]

while hq:
    tmp = heappop(hq)
    bit = tmp % 10000
    tmp //= 10000
    pos = tmp % 10000
    d = tmp // 10000
    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
            tmp = (c + d) * 100000000 + npos * 10000 + nbit
            heappush(hq, tmp)
print(dist[-1][-1])
0