結果

問題 No.1812 Uribo Road
ユーザー ああいいああいい
提出日時 2022-01-14 23:19:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 836 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 1,115,300 KB
最終ジャッジ日時 2024-11-20 14:30:46
合計ジャッジ時間 77,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
506,080 KB
testcase_01 AC 38 ms
232,328 KB
testcase_02 AC 38 ms
263,204 KB
testcase_03 AC 232 ms
230,168 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 332 ms
87,440 KB
testcase_09 AC 658 ms
219,960 KB
testcase_10 AC 276 ms
78,824 KB
testcase_11 AC 175 ms
78,156 KB
testcase_12 TLE -
testcase_13 AC 515 ms
399,976 KB
testcase_14 AC 651 ms
399,548 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,029 ms
92,964 KB
testcase_24 AC 72 ms
73,700 KB
testcase_25 AC 218 ms
80,104 KB
testcase_26 AC 146 ms
77,668 KB
testcase_27 TLE -
testcase_28 AC 352 ms
83,972 KB
testcase_29 AC 37 ms
54,088 KB
testcase_30 AC 364 ms
79,528 KB
testcase_31 TLE -
testcase_32 AC 195 ms
77,560 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()))
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))
    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 > 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