結果

問題 No.1814 Uribo Road (Easy)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 22:36:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-11-24 08:12:06
合計ジャッジ時間 6,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 35 ms
52,736 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 38 ms
53,120 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 93 ms
76,432 KB
testcase_10 AC 58 ms
63,616 KB
testcase_11 AC 79 ms
75,136 KB
testcase_12 AC 116 ms
78,316 KB
testcase_13 AC 111 ms
77,688 KB
testcase_14 AC 127 ms
78,720 KB
testcase_15 AC 80 ms
76,504 KB
testcase_16 AC 88 ms
76,432 KB
testcase_17 AC 89 ms
76,548 KB
testcase_18 AC 63 ms
71,168 KB
testcase_19 AC 71 ms
73,600 KB
testcase_20 AC 129 ms
79,200 KB
testcase_21 AC 130 ms
78,424 KB
testcase_22 AC 134 ms
81,048 KB
testcase_23 AC 126 ms
79,488 KB
testcase_24 AC 158 ms
81,300 KB
testcase_25 AC 162 ms
81,300 KB
testcase_26 AC 177 ms
81,536 KB
testcase_27 AC 179 ms
81,920 KB
testcase_28 AC 186 ms
82,304 KB
testcase_29 AC 179 ms
81,992 KB
testcase_30 AC 151 ms
80,904 KB
testcase_31 AC 153 ms
80,804 KB
testcase_32 AC 131 ms
78,352 KB
testcase_33 AC 56 ms
65,664 KB
testcase_34 AC 59 ms
67,584 KB
testcase_35 AC 86 ms
77,428 KB
testcase_36 AC 110 ms
76,768 KB
testcase_37 AC 104 ms
77,824 KB
testcase_38 AC 157 ms
78,720 KB
testcase_39 AC 114 ms
77,576 KB
testcase_40 AC 130 ms
78,196 KB
testcase_41 AC 129 ms
80,768 KB
testcase_42 AC 126 ms
79,360 KB
testcase_43 AC 127 ms
78,220 KB
testcase_44 AC 134 ms
79,104 KB
testcase_45 AC 102 ms
77,360 KB
testcase_46 AC 139 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

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