結果

問題 No.1812 Uribo Road
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-16 13:00:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 1,111,632 KB
最終ジャッジ日時 2024-11-23 09:44:35
合計ジャッジ時間 71,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
320,104 KB
testcase_01 AC 45 ms
62,116 KB
testcase_02 AC 46 ms
321,508 KB
testcase_03 AC 290 ms
87,668 KB
testcase_04 AC 42 ms
253,056 KB
testcase_05 AC 42 ms
320,076 KB
testcase_06 AC 42 ms
338,392 KB
testcase_07 AC 49 ms
314,440 KB
testcase_08 AC 286 ms
367,144 KB
testcase_09 AC 453 ms
97,456 KB
testcase_10 AC 244 ms
86,708 KB
testcase_11 AC 212 ms
80,900 KB
testcase_12 TLE -
testcase_13 AC 205 ms
93,600 KB
testcase_14 AC 325 ms
116,404 KB
testcase_15 AC 2,310 ms
189,452 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 786 ms
132,292 KB
testcase_24 AC 79 ms
73,344 KB
testcase_25 AC 196 ms
81,436 KB
testcase_26 AC 172 ms
78,712 KB
testcase_27 AC 4,145 ms
187,212 KB
testcase_28 AC 327 ms
87,144 KB
testcase_29 AC 41 ms
54,016 KB
testcase_30 AC 276 ms
81,496 KB
testcase_31 TLE -
testcase_32 AC 223 ms
79,284 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

import heapq
INF = 10**18

from collections import defaultdict

def main():

    n, m, k = map(int, input().split())
    R = list(map(int, input().split()))
    R = [r-1 for r in R]
    toid = {}
    for i, r in enumerate(R):
        toid[r] = i

    g = [[] for i in range(n)]
    for i in range(m):
        a, b, c = map(int, input().split())
        a, b = a-1, b-1
        if i in toid:
            j = toid[i]
            g[a].append((c, b, j))
            g[b].append((c, a, j))
        else:
            g[a].append((c, b, -1))
            g[b].append((c, a, -1))


    import heapq
    INF = 10**18
    hq = []
    heapq.heapify(hq)
    heapq.heappush(hq, (0, 0))
    dist = defaultdict(lambda: INF)
    dist[0] = 0
    while hq:
        d, x = heapq.heappop(hq)
        if dist[x] < d:
            continue
        b, v = divmod(x, n)
        for c, nv, i in g[v]:
            if i != -1:
                nb = b|(1<<i)
            else:
                nb = b
            nx = nb*n+nv
            if dist[nx] > dist[x]+c:
                dist[nx] = dist[x]+c
                heapq.heappush(hq, (dist[nx], nx))
    t = ((1<<k)-1)*n+n-1
    ans = dist[t]
    print(ans)

if __name__ == '__main__':
    main()
0