結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 46 ms
54,528 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 44 ms
54,144 KB
testcase_06 AC 46 ms
54,528 KB
testcase_07 AC 44 ms
54,400 KB
testcase_08 AC 44 ms
54,528 KB
testcase_09 AC 109 ms
76,832 KB
testcase_10 AC 64 ms
66,816 KB
testcase_11 AC 92 ms
77,440 KB
testcase_12 AC 126 ms
78,452 KB
testcase_13 AC 130 ms
78,288 KB
testcase_14 AC 145 ms
78,976 KB
testcase_15 AC 92 ms
76,912 KB
testcase_16 AC 101 ms
76,864 KB
testcase_17 AC 93 ms
76,800 KB
testcase_18 AC 72 ms
70,400 KB
testcase_19 AC 84 ms
76,800 KB
testcase_20 AC 144 ms
79,872 KB
testcase_21 AC 139 ms
78,592 KB
testcase_22 AC 151 ms
82,816 KB
testcase_23 AC 139 ms
80,128 KB
testcase_24 AC 161 ms
82,128 KB
testcase_25 AC 165 ms
82,068 KB
testcase_26 AC 182 ms
83,200 KB
testcase_27 AC 182 ms
83,540 KB
testcase_28 AC 197 ms
83,712 KB
testcase_29 AC 190 ms
83,712 KB
testcase_30 AC 177 ms
83,328 KB
testcase_31 AC 171 ms
83,584 KB
testcase_32 AC 149 ms
78,720 KB
testcase_33 AC 81 ms
69,376 KB
testcase_34 AC 74 ms
70,144 KB
testcase_35 AC 100 ms
77,568 KB
testcase_36 AC 128 ms
77,568 KB
testcase_37 AC 105 ms
77,824 KB
testcase_38 AC 161 ms
79,104 KB
testcase_39 AC 133 ms
78,208 KB
testcase_40 AC 141 ms
78,720 KB
testcase_41 AC 146 ms
82,352 KB
testcase_42 AC 142 ms
79,820 KB
testcase_43 AC 138 ms
78,456 KB
testcase_44 AC 155 ms
79,560 KB
testcase_45 AC 125 ms
78,248 KB
testcase_46 AC 159 ms
82,432 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