結果

問題 No.1812 Uribo Road
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-16 13:00:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 262,656 KB
最終ジャッジ日時 2024-05-02 17:28:45
合計ジャッジ時間 9,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,016 KB
testcase_01 AC 48 ms
54,400 KB
testcase_02 AC 50 ms
54,400 KB
testcase_03 AC 332 ms
82,708 KB
testcase_04 AC 49 ms
54,016 KB
testcase_05 AC 50 ms
54,784 KB
testcase_06 AC 50 ms
54,400 KB
testcase_07 AC 58 ms
60,800 KB
testcase_08 AC 340 ms
88,388 KB
testcase_09 AC 554 ms
97,720 KB
testcase_10 AC 299 ms
86,584 KB
testcase_11 AC 254 ms
81,160 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

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