結果

問題 No.17 2つの地点に泊まりたい
ユーザー kohei2019kohei2019
提出日時 2021-02-09 23:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 5,000 ms
コード長 2,095 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,044 KB
最終ジャッジ日時 2024-07-07 05:25:04
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,120 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 62 ms
71,552 KB
testcase_03 AC 252 ms
78,720 KB
testcase_04 AC 147 ms
77,500 KB
testcase_05 AC 327 ms
78,644 KB
testcase_06 AC 266 ms
78,652 KB
testcase_07 AC 216 ms
77,788 KB
testcase_08 AC 457 ms
80,044 KB
testcase_09 AC 456 ms
79,180 KB
testcase_10 AC 293 ms
78,844 KB
testcase_11 AC 351 ms
78,588 KB
testcase_12 AC 34 ms
52,992 KB
testcase_13 AC 32 ms
53,248 KB
testcase_14 AC 31 ms
52,992 KB
testcase_15 AC 32 ms
53,248 KB
testcase_16 AC 32 ms
52,992 KB
testcase_17 AC 98 ms
76,444 KB
testcase_18 AC 158 ms
77,612 KB
testcase_19 AC 159 ms
78,292 KB
testcase_20 AC 63 ms
73,472 KB
testcase_21 AC 33 ms
52,992 KB
testcase_22 AC 296 ms
78,872 KB
testcase_23 AC 318 ms
78,572 KB
testcase_24 AC 334 ms
78,588 KB
testcase_25 AC 90 ms
76,452 KB
testcase_26 AC 397 ms
79,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
lsS = [int(input()) for i in range(N)]
M = int(input())
lsg = [[] for i in range(N)]
for i in range(M):
    a,b,c = map(int,input().split())
    lsg[a].append((b,c))
    lsg[b].append((a,c))
#滞在0(普通のダイクストラ)
lscost0 = [float('INF')]*(N)
used = [False]*(N)
lscost0[0] = 0
h = [(0,0)]
heapq.heapify(h)
while h:
    cost,node = heapq.heappop(h)
    if used[node]:
        continue
    used[node] = True
    for nj,cj in lsg[node]:
        if used[nj]:
            continue
        if lscost0[nj] > lscost0[node]+cj:
            lscost0[nj] = lscost0[node]+cj
            heapq.heappush(h,(lscost0[nj],nj))
#滞在1 O(N)*(普通のダイクストラ),始点で滞在。他1か所で滞在。
lscost1 = [float('INF')]*(N)
for st in range(1,N-1):
    lscost1a = [float('INF')]*(N)
    used = [False]*(N)
    lscost1a[st] = lscost0[st]+lsS[st]
    h = [(lscost1a[st],st)]
    heapq.heapify(h)
    while h:
        cost,node = heapq.heappop(h)
        if used[node]:
            continue
        used[node] = True
        for nj,cj in lsg[node]:
            if used[nj]:
                continue
            if lscost1a[nj] > lscost1a[node]+cj:
                lscost1a[nj] = lscost1a[node]+cj
                heapq.heappush(h,(lscost1a[nj],nj))
    for st2 in range(1,N-1):
        if st2 == st:
            continue
        lscost1b = [float('INF')]*(N)
        used = [False]*(N)
        lscost1b[st2] = lscost1a[st2]+lsS[st2]
        if lscost1b[st2] == float('INF'):
            continue
        h = [(lscost1b[st2],st2)]
        heapq.heapify(h)
        while h:
            cost,node = heapq.heappop(h)
            if used[node]:
                continue
            used[node] = True
            for nj,cj in lsg[node]:
                if used[nj]:
                    continue
                if lscost1b[nj] > lscost1b[node]+cj:
                    lscost1b[nj] = lscost1b[node]+cj
                    heapq.heappush(h,(lscost1b[nj],nj))
        for i in range(N):
            lscost1[i] = min(lscost1[i],lscost1b[i])
print(lscost1[-1])
0