結果

問題 No.17 2つの地点に泊まりたい
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-25 00:24:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-07-18 09:00:24
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 49 ms
11,776 KB
testcase_05 AC 98 ms
14,080 KB
testcase_06 AC 87 ms
12,800 KB
testcase_07 AC 86 ms
13,440 KB
testcase_08 AC 136 ms
15,360 KB
testcase_09 AC 155 ms
16,384 KB
testcase_10 AC 48 ms
11,904 KB
testcase_11 AC 105 ms
13,312 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 26 ms
11,008 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 26 ms
11,008 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 26 ms
11,008 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 26 ms
11,008 KB
testcase_21 AC 26 ms
11,008 KB
testcase_22 AC 32 ms
11,008 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 140 ms
15,360 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]:
        heappush(que, (to, cnt, d + cost, stop.copy()))

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