結果

問題 No.17 2つの地点に泊まりたい
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-25 00:20:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 859 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-07-18 08:55:53
合計ジャッジ時間 2,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 40 ms
11,520 KB
testcase_05 AC 76 ms
13,568 KB
testcase_06 AC 74 ms
12,928 KB
testcase_07 AC 72 ms
12,800 KB
testcase_08 AC 123 ms
16,384 KB
testcase_09 WA -
testcase_10 AC 44 ms
11,776 KB
testcase_11 AC 82 ms
13,312 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 28 ms
11,008 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 27 ms
11,008 KB
testcase_21 AC 27 ms
11,008 KB
testcase_22 AC 32 ms
11,008 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 107 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush

N = int(input())

stopCost = [int(input()) for _ in range(N)]
edges = [[] for _ in range(N)]

M = int(input())
for _ in range(M):
    fr, to, cost = map(int, input().split())
    edges[fr].append((to, cost))
    edges[to].append((fr, cost))

minDist = defaultdict(lambda : float('inf'))
que = [((0, 0, 0, set([0, N - 1])))]

while que:
    now, cnt, d, stop = heappop(que)

    if minDist[(now, cnt, now in stop)] <= d:
        continue
    minDist[(now, cnt, now in stop)] = d

    if not now in stop and cnt < 2:
        que.append((now, cnt + 1, d + stopCost[now], stop.copy() | set([now])))

    for to, cost in edges[now]:
        if minDist[(to, cnt, to in stop)] > d + cost:
            heappush(que, (to, cnt, d + cost, stop.copy()))

ans = minDist[(N - 1, 2, True)]
print(ans)
0