結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
52,864 KB
testcase_05 AC 36 ms
52,864 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 36 ms
52,608 KB
testcase_09 AC 91 ms
76,652 KB
testcase_10 AC 51 ms
63,616 KB
testcase_11 AC 77 ms
75,404 KB
testcase_12 AC 114 ms
78,336 KB
testcase_13 AC 107 ms
77,868 KB
testcase_14 AC 126 ms
78,336 KB
testcase_15 AC 76 ms
76,416 KB
testcase_16 AC 87 ms
76,160 KB
testcase_17 AC 84 ms
76,800 KB
testcase_18 AC 64 ms
71,424 KB
testcase_19 AC 71 ms
73,600 KB
testcase_20 AC 133 ms
79,464 KB
testcase_21 AC 137 ms
78,296 KB
testcase_22 AC 130 ms
81,152 KB
testcase_23 AC 124 ms
79,232 KB
testcase_24 AC 159 ms
81,300 KB
testcase_25 AC 161 ms
81,424 KB
testcase_26 AC 185 ms
81,664 KB
testcase_27 AC 189 ms
82,304 KB
testcase_28 AC 199 ms
82,248 KB
testcase_29 AC 184 ms
81,792 KB
testcase_30 AC 160 ms
80,768 KB
testcase_31 AC 153 ms
80,896 KB
testcase_32 AC 127 ms
78,300 KB
testcase_33 AC 55 ms
65,792 KB
testcase_34 AC 58 ms
67,456 KB
testcase_35 AC 85 ms
77,824 KB
testcase_36 AC 102 ms
76,928 KB
testcase_37 AC 95 ms
77,568 KB
testcase_38 AC 150 ms
78,848 KB
testcase_39 AC 114 ms
77,784 KB
testcase_40 AC 126 ms
78,336 KB
testcase_41 AC 122 ms
80,804 KB
testcase_42 AC 124 ms
79,336 KB
testcase_43 AC 126 ms
78,088 KB
testcase_44 AC 123 ms
78,976 KB
testcase_45 AC 102 ms
77,664 KB
testcase_46 AC 138 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