結果
| 問題 | No.2569 はじめてのおつかいHard | 
| コンテスト | |
| ユーザー | 👑 | 
| 提出日時 | 2023-11-14 00:40:05 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 698 ms / 2,000 ms | 
| コード長 | 1,168 bytes | 
| コンパイル時間 | 213 ms | 
| コンパイル使用メモリ | 82,652 KB | 
| 実行使用メモリ | 126,664 KB | 
| 最終ジャッジ日時 | 2025-06-20 01:54:03 | 
| 合計ジャッジ時間 | 7,109 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 12 | 
ソースコード
from collections import deque
from heapq import heappush, heappop
INF = 1 << 60
N, M = map(int, input().split())
graph = [[] for _ in range(N)]
graph_rev = [[] for _ in range(N)]
for _ in range(M):
    u, v, t = map(int, input().split())
    u -= 1; v -= 1
    graph[u].append((t, v))
    graph_rev[v].append((t, u))
def dijkstra(start, G):
    costs = [INF]*N
    costs[start] = 0
    
    pq = []
    heappush(pq, (0, start))
    
    while pq:
        now_t, now_v = heappop(pq)
        
        if costs[now_v] < now_t:
            continue
        
        for next_t, next_v in G[now_v]:
            if costs[next_v] > costs[now_v] + next_t:
                costs[next_v] = costs[now_v] + next_t
                heappush(pq, (now_t + next_t, next_v))
    
    return costs
di = {
    N-2: dijkstra(N-2, graph),
    N-1: dijkstra(N-1, graph)
}
di_rev = {
    N-2: dijkstra(N-2, graph_rev),
    N-1: dijkstra(N-1, graph_rev)
}
for i in range(N-2):
    ans_1 = di_rev[N-2][i] + di[N-2][N-1] + di[N-1][i]
    ans_2 = di_rev[N-1][i] + di[N-1][N-2] + di[N-2][i]
    ans = min(ans_1, ans_2)
    
    if ans < INF:
        print(ans)
    else:
        print(-1)
            
            
            
        