結果

問題 No.1812 Uribo Road
ユーザー ああいいああいい
提出日時 2022-01-14 23:36:02
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 926 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 1,120,584 KB
最終ジャッジ日時 2024-11-20 15:20:21
合計ジャッジ時間 79,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,112 KB
testcase_01 AC 44 ms
505,088 KB
testcase_02 AC 43 ms
225,736 KB
testcase_03 AC 260 ms
283,524 KB
testcase_04 AC 39 ms
365,412 KB
testcase_05 AC 44 ms
198,808 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 314 ms
208,528 KB
testcase_11 AC 194 ms
77,672 KB
testcase_12 TLE -
testcase_13 AC 538 ms
400,256 KB
testcase_14 AC 673 ms
399,616 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,025 ms
92,740 KB
testcase_24 AC 71 ms
72,704 KB
testcase_25 AC 227 ms
80,644 KB
testcase_26 AC 149 ms
77,764 KB
testcase_27 TLE -
testcase_28 AC 351 ms
83,816 KB
testcase_29 AC 36 ms
52,736 KB
testcase_30 AC 364 ms
78,980 KB
testcase_31 TLE -
testcase_32 AC 203 ms
78,048 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
r = sys.stdin

N,M,K = map(int,r.readline().split())
R = list(map(int,r.readline().split()))
Rset = set(R)
G = [[] for _ in range(N+1)]
#D = {v:i for i,v in enumerate(sorted(set(R)))}
edge = dict()
for i in range(M):
    a,b,c = map(int,r.readline().split())
    G[a].append((b,c))
    G[b].append((a,c))
    if i + 1 not in Rset:continue
    for j in range(K):
        if R[j] == i + 1:
            edge[(a,b)] = j
            edge[(b,a)] = j
C = 10 ** 15
dp = [[C] * (1<<K) for _ in range(N+1)]
dp[0][0] = 0
import heapq
q = []
heapq.heapify(q)
heapq.heappush(q,(0,1,0))
while q:
    d,now,S = heapq.heappop(q)
    if d == N and S == (1 << K) - 1:break
    if d > dp[now][S]:continue
    for v,c in G[now]:
        if (now,v) in edge:
            T = S | (1 << edge[(now,v)])
        else:T = S
        if dp[v][T] > d + c:
            dp[v][T] = d+c
            heapq.heappush(q,(d+c,v,T))
print(dp[N][(1<<K)-1])
0