結果

問題 No.17 2つの地点に泊まりたい
ユーザー ayaoniayaoni
提出日時 2020-12-04 11:08:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 915 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-09-14 21:29:26
合計ジャッジ時間 2,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 50 ms
59,520 KB
testcase_03 AC 60 ms
63,104 KB
testcase_04 AC 52 ms
60,928 KB
testcase_05 AC 68 ms
66,816 KB
testcase_06 AC 61 ms
63,872 KB
testcase_07 AC 55 ms
61,952 KB
testcase_08 AC 71 ms
67,584 KB
testcase_09 AC 70 ms
67,840 KB
testcase_10 AC 61 ms
63,232 KB
testcase_11 AC 63 ms
64,512 KB
testcase_12 AC 42 ms
51,968 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 42 ms
52,352 KB
testcase_17 AC 51 ms
60,032 KB
testcase_18 AC 58 ms
62,464 KB
testcase_19 AC 59 ms
62,464 KB
testcase_20 AC 50 ms
59,648 KB
testcase_21 AC 48 ms
58,880 KB
testcase_22 AC 60 ms
62,848 KB
testcase_23 AC 64 ms
64,640 KB
testcase_24 AC 63 ms
64,256 KB
testcase_25 AC 48 ms
58,752 KB
testcase_26 AC 66 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
S = [I() for _ in range(N)]

inf = 10**18
dist = [[inf]*N for _ in range(N)]
M = I()
for _ in range(M):
    a,b,c = MI()
    dist[a][b] = c
    dist[b][a] = c

for k in range(N):
    for i in range(N):
        for j in range(N):
            dist[i][j] = min(dist[i][j],dist[i][k]+dist[k][j])

ans = inf
for i in range(1,N-1):
    for j in range(1,N-1):
        if i != j:
            ans = min(ans,dist[0][i]+dist[i][j]+dist[j][-1]+S[i]+S[j])

print(ans)
0