結果

問題 No.1814 Uribo Road (Easy)
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-15 20:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-05-01 18:55:03
合計ジャッジ時間 6,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,528 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 41 ms
54,504 KB
testcase_03 AC 40 ms
54,144 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 44 ms
54,272 KB
testcase_06 AC 40 ms
54,016 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 41 ms
54,016 KB
testcase_09 AC 104 ms
77,184 KB
testcase_10 AC 55 ms
67,220 KB
testcase_11 AC 82 ms
77,356 KB
testcase_12 AC 123 ms
78,464 KB
testcase_13 AC 111 ms
78,480 KB
testcase_14 AC 138 ms
78,848 KB
testcase_15 AC 84 ms
76,900 KB
testcase_16 AC 106 ms
76,920 KB
testcase_17 AC 80 ms
76,620 KB
testcase_18 AC 71 ms
70,528 KB
testcase_19 AC 86 ms
76,872 KB
testcase_20 AC 122 ms
79,928 KB
testcase_21 AC 136 ms
78,668 KB
testcase_22 AC 127 ms
82,920 KB
testcase_23 AC 128 ms
80,248 KB
testcase_24 AC 139 ms
82,208 KB
testcase_25 AC 152 ms
82,432 KB
testcase_26 AC 147 ms
83,108 KB
testcase_27 AC 165 ms
83,456 KB
testcase_28 AC 166 ms
83,652 KB
testcase_29 AC 168 ms
83,712 KB
testcase_30 AC 147 ms
83,488 KB
testcase_31 AC 158 ms
83,568 KB
testcase_32 AC 125 ms
78,848 KB
testcase_33 AC 71 ms
69,760 KB
testcase_34 AC 72 ms
69,760 KB
testcase_35 AC 100 ms
77,644 KB
testcase_36 AC 104 ms
77,304 KB
testcase_37 AC 99 ms
77,696 KB
testcase_38 AC 134 ms
79,500 KB
testcase_39 AC 131 ms
78,432 KB
testcase_40 AC 118 ms
78,752 KB
testcase_41 AC 131 ms
82,412 KB
testcase_42 AC 129 ms
79,920 KB
testcase_43 AC 132 ms
78,588 KB
testcase_44 AC 128 ms
79,364 KB
testcase_45 AC 121 ms
78,520 KB
testcase_46 AC 130 ms
82,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import heapq as hq
N, M, K = map(int, input().split())
R = list(map(int, input().split()))
Edge = [list(map(int, input().split())) for _ in range(M)]

graph = defaultdict(list)
for i in range(M):
    a, b, c = Edge[i]
    d = -1
    if i+1 in R:
        d = R.index(i+1)
    graph[a].append([b, c, d])
    graph[b].append([a, c, d])

INF = 10**18
dist = [INF]*(1 << 13)
dist[1] = 0
task = [1]
mask = (1 << 13)-1
msks = (1 << 8)-1
while task:
    t = hq.heappop(task)
    d = t >> 13
    x = t & mask
    if d > dist[x]:
        continue
    v = x & msks
    s = x >> 8
    for u, c, f in graph[v]:
        ns = (s << 8)+u
        if f >= 0:
            ns |= 1 << (f+8)
        if dist[ns] > d+c:
            dist[ns] = d+c
            hq.heappush(task, ns+((d+c) << 13))

print(dist[(((1 << K)-1) << 8)+N])
0