結果

問題 No.1814 Uribo Road (Easy)
ユーザー ああいいああいい
提出日時 2022-01-16 23:42:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,448 KB
最終ジャッジ日時 2024-11-23 12:39:14
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 45 ms
52,736 KB
testcase_03 AC 45 ms
52,864 KB
testcase_04 AC 45 ms
52,480 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 44 ms
52,736 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 45 ms
52,608 KB
testcase_09 AC 116 ms
76,476 KB
testcase_10 AC 67 ms
65,024 KB
testcase_11 AC 78 ms
68,992 KB
testcase_12 AC 129 ms
76,772 KB
testcase_13 AC 131 ms
76,896 KB
testcase_14 AC 163 ms
78,020 KB
testcase_15 AC 104 ms
76,544 KB
testcase_16 AC 118 ms
76,672 KB
testcase_17 AC 112 ms
76,416 KB
testcase_18 AC 78 ms
69,376 KB
testcase_19 AC 90 ms
73,984 KB
testcase_20 AC 145 ms
77,824 KB
testcase_21 AC 142 ms
77,056 KB
testcase_22 AC 156 ms
78,720 KB
testcase_23 AC 142 ms
77,568 KB
testcase_24 AC 185 ms
78,208 KB
testcase_25 AC 181 ms
78,720 KB
testcase_26 AC 244 ms
78,424 KB
testcase_27 AC 257 ms
78,848 KB
testcase_28 AC 258 ms
79,008 KB
testcase_29 AC 266 ms
79,448 KB
testcase_30 AC 214 ms
78,464 KB
testcase_31 AC 220 ms
78,592 KB
testcase_32 AC 162 ms
77,048 KB
testcase_33 AC 69 ms
65,152 KB
testcase_34 AC 78 ms
67,840 KB
testcase_35 AC 84 ms
70,912 KB
testcase_36 AC 139 ms
76,552 KB
testcase_37 AC 102 ms
76,800 KB
testcase_38 AC 183 ms
77,712 KB
testcase_39 AC 141 ms
77,092 KB
testcase_40 AC 136 ms
76,848 KB
testcase_41 AC 119 ms
77,952 KB
testcase_42 AC 129 ms
77,312 KB
testcase_43 AC 150 ms
77,116 KB
testcase_44 AC 174 ms
77,696 KB
testcase_45 AC 122 ms
76,672 KB
testcase_46 AC 155 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

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