結果

問題 No.2569 はじめてのおつかいHard
ユーザー detteiuudetteiuu
提出日時 2024-11-29 00:22:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 125,812 KB
最終ジャッジ日時 2024-11-29 00:23:02
合計ジャッジ時間 6,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
92,412 KB
testcase_01 AC 259 ms
92,024 KB
testcase_02 AC 268 ms
92,116 KB
testcase_03 AC 279 ms
92,072 KB
testcase_04 AC 247 ms
91,912 KB
testcase_05 AC 702 ms
124,848 KB
testcase_06 AC 755 ms
107,652 KB
testcase_07 AC 456 ms
123,732 KB
testcase_08 AC 658 ms
125,812 KB
testcase_09 AC 466 ms
101,748 KB
testcase_10 AC 58 ms
53,316 KB
testcase_11 AC 38 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N, M = map(int, input().split())
G = [[] for _ in range(N)]
GR = [[] for _ in range(N)]
for _ in range(M):
    u, v, t = map(int, input().split())
    G[u-1].append((v-1, t))
    GR[v-1].append((u-1, t))

INF = 10**18

def dijkstra(start, G):
    dist = [INF]*N
    dist[start] = 0
    visited = [False]*N
    que = [(0, start)]
    while que:
        d, now = heappop(que)
        if visited[now]:
            continue
        visited[now] = True
        for next, weight in G[now]:
            if dist[now]+weight < dist[next]:
                dist[next] = dist[now]+weight
                heappush(que, (dist[next], next))
    return dist

distN1 = dijkstra(N-2, G)
distN = dijkstra(N-1, G)
distN1R = dijkstra(N-2, GR)
distNR = dijkstra(N-1, GR)

for i in range(N-2):
    ans = INF
    if distN1R[i] != INF and distN1[N-1] != INF and distN[i] != INF:
        ans = min(ans, distN1R[i]+distN1[N-1]+distN[i])
    if distNR[i] != INF and distN[N-2] != INF and distN1[i] != INF:
        ans = min(ans, distNR[i]+distN[N-2]+distN1[i])
    print(ans if ans != INF else -1)
0