結果

問題 No.1814 Uribo Road (Easy)
ユーザー rlangevinrlangevin
提出日時 2024-01-10 12:46:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,379 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,672 KB
最終ジャッジ日時 2024-09-27 20:20:23
合計ジャッジ時間 9,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,152 KB
testcase_01 AC 44 ms
60,452 KB
testcase_02 AC 39 ms
54,068 KB
testcase_03 AC 38 ms
53,944 KB
testcase_04 AC 39 ms
52,720 KB
testcase_05 AC 39 ms
52,524 KB
testcase_06 AC 41 ms
58,048 KB
testcase_07 AC 38 ms
53,924 KB
testcase_08 AC 38 ms
52,936 KB
testcase_09 AC 80 ms
73,140 KB
testcase_10 AC 56 ms
65,868 KB
testcase_11 AC 60 ms
68,748 KB
testcase_12 AC 74 ms
73,312 KB
testcase_13 AC 85 ms
74,448 KB
testcase_14 AC 174 ms
76,924 KB
testcase_15 AC 90 ms
68,560 KB
testcase_16 AC 247 ms
76,040 KB
testcase_17 AC 406 ms
76,944 KB
testcase_18 AC 121 ms
70,400 KB
testcase_19 AC 252 ms
76,356 KB
testcase_20 AC 110 ms
77,640 KB
testcase_21 AC 170 ms
77,252 KB
testcase_22 AC 111 ms
77,900 KB
testcase_23 AC 107 ms
77,572 KB
testcase_24 AC 171 ms
77,872 KB
testcase_25 AC 174 ms
77,744 KB
testcase_26 AC 441 ms
78,124 KB
testcase_27 AC 458 ms
78,172 KB
testcase_28 AC 459 ms
78,672 KB
testcase_29 AC 483 ms
78,600 KB
testcase_30 AC 480 ms
78,108 KB
testcase_31 AC 479 ms
78,348 KB
testcase_32 AC 154 ms
77,116 KB
testcase_33 AC 59 ms
68,312 KB
testcase_34 AC 62 ms
69,488 KB
testcase_35 AC 66 ms
71,896 KB
testcase_36 AC 103 ms
76,776 KB
testcase_37 AC 63 ms
69,912 KB
testcase_38 AC 205 ms
77,148 KB
testcase_39 AC 107 ms
76,952 KB
testcase_40 AC 90 ms
75,268 KB
testcase_41 AC 84 ms
78,340 KB
testcase_42 AC 90 ms
77,460 KB
testcase_43 AC 134 ms
77,048 KB
testcase_44 AC 206 ms
77,360 KB
testcase_45 AC 92 ms
77,008 KB
testcase_46 AC 117 ms
77,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import *
inf = 10 ** 18

def dist(a, b):
    return max(0, sqrt((X[a] - X[b])**2 + (Y[a] - Y[b])**2) - R[a] - R[b])


def dijkstra(G, K2):
    ind = (0, 0)
    N = len(G)
    seen = [[0] * N for _ in range(K2)]
    D = [[inf] * N for _ in range(K2)]
    D[0][0] = 0
    while True:
        minv = inf
        for s in range(K2):
            for i in range(N):
                if seen[s][i]:
                    continue
                if D[s][i] < minv:
                    ind = (s, i)
                    minv = D[s][i]
        if ind == (K2-1, N-1):
            break
        
        seen[ind[0]][ind[1]] = 1
        s = ind[0]
        for i in range(N):
            if G[ind[1]][i] == inf:
                continue
            ns = s
            if RR[G[ind[1]][i][1]] != -1:
                ns = s | (1 << RR[G[ind[1]][i][1]])
            if seen[ns][i]:
                continue
            D[ns][i] = min(D[ns][i], D[ind[0]][ind[1]] + G[ind[1]][i][0])
                        
    return D[K2-1][N-1]


N, M, K = map(int, input().split())
R = list(map(int, input().split()))
RR = [-1] * M
for i in range(K):
    RR[R[i]-1] = i
    
G = [[inf] * N for _ in range(N)]
for i in range(M):
    A, B, C = map(int, input().split())
    A, B = A - 1, B - 1
    G[A][B] = (C, i)
    G[B][A] = (C, i)
    
print(dijkstra(G, 1 << K))
0