結果

問題 No.1449 新プロランド
ユーザー roarisroaris
提出日時 2021-04-01 02:48:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 87,348 KB
最終ジャッジ日時 2024-12-24 02:02:00
合計ジャッジ時間 9,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
62,336 KB
testcase_01 AC 118 ms
76,748 KB
testcase_02 AC 169 ms
77,844 KB
testcase_03 AC 112 ms
76,800 KB
testcase_04 AC 116 ms
77,072 KB
testcase_05 AC 720 ms
87,296 KB
testcase_06 AC 457 ms
82,632 KB
testcase_07 AC 306 ms
82,176 KB
testcase_08 AC 525 ms
85,852 KB
testcase_09 AC 283 ms
78,536 KB
testcase_10 AC 296 ms
83,060 KB
testcase_11 AC 162 ms
83,800 KB
testcase_12 AC 506 ms
85,248 KB
testcase_13 AC 315 ms
79,316 KB
testcase_14 AC 158 ms
84,044 KB
testcase_15 AC 544 ms
83,804 KB
testcase_16 AC 382 ms
80,452 KB
testcase_17 AC 402 ms
81,460 KB
testcase_18 AC 48 ms
58,596 KB
testcase_19 AC 50 ms
62,720 KB
testcase_20 AC 50 ms
57,856 KB
testcase_21 AC 228 ms
81,536 KB
testcase_22 AC 156 ms
77,184 KB
testcase_23 AC 260 ms
83,520 KB
testcase_24 AC 244 ms
78,564 KB
testcase_25 AC 179 ms
77,872 KB
testcase_26 AC 72 ms
71,936 KB
testcase_27 AC 711 ms
87,348 KB
testcase_28 AC 388 ms
79,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

def dijkstra():
    dist = [[10**18]*(10**4+10) for _ in range(N)]
    dist[0][T[0]] = T[0]
    pq = [(T[0], T[0])]
    
    while pq:
        d, vt = heappop(pq)
        v, t = divmod(vt, 10**6)
        
        if dist[v][t]<d:
            continue
        
        for nv, w in G[v]:
            if t+T[nv]<10**4+10 and dist[nv][t+T[nv]]>dist[v][t]+w//t+T[nv]:
                dist[nv][t+T[nv]] = dist[v][t]+w//t+T[nv]
                heappush(pq, (dist[nv][t+T[nv]], nv*10**6+t+T[nv]))
    
    return min(dist[-1])-T[-1]

N, M = map(int, input().split())
G = [[] for _ in range(N)]

for _ in range(M):
    A, B, C = map(int, input().split())
    G[A-1].append((B-1, C))
    G[B-1].append((A-1, C))

T = list(map(int, input().split()))
print(dijkstra())
0