結果

問題 No.1449 新プロランド
ユーザー flippergoflippergo
提出日時 2024-11-04 21:44:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 113,268 KB
最終ジャッジ日時 2024-11-04 21:44:10
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,204 KB
testcase_01 AC 42 ms
53,436 KB
testcase_02 AC 140 ms
81,640 KB
testcase_03 AC 70 ms
71,740 KB
testcase_04 AC 110 ms
78,268 KB
testcase_05 AC 393 ms
113,268 KB
testcase_06 AC 262 ms
99,408 KB
testcase_07 AC 190 ms
94,148 KB
testcase_08 AC 273 ms
104,928 KB
testcase_09 AC 203 ms
93,332 KB
testcase_10 AC 242 ms
99,328 KB
testcase_11 AC 186 ms
101,096 KB
testcase_12 AC 256 ms
103,244 KB
testcase_13 AC 217 ms
90,308 KB
testcase_14 AC 161 ms
103,000 KB
testcase_15 AC 294 ms
101,736 KB
testcase_16 AC 220 ms
93,264 KB
testcase_17 AC 254 ms
96,120 KB
testcase_18 AC 60 ms
67,720 KB
testcase_19 AC 95 ms
97,848 KB
testcase_20 AC 50 ms
63,436 KB
testcase_21 AC 184 ms
95,716 KB
testcase_22 AC 113 ms
78,636 KB
testcase_23 AC 245 ms
102,908 KB
testcase_24 AC 186 ms
86,956 KB
testcase_25 AC 61 ms
73,760 KB
testcase_26 AC 39 ms
53,828 KB
testcase_27 AC 398 ms
112,600 KB
testcase_28 AC 309 ms
98,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
cmax = 0
for _ in range(M):
    a,b,c = map(int,input().split())
    cmax = max(cmax,c)
    G[a].append((b,c))
    G[b].append((a,c))
T = [0]+list(map(int,input().split()))
F = {(i,j):[] for i in range(1,N+1) for j in range(1,cmax+2)}
for i in range(1,N+1):
    for j in range(1,cmax+2):
        for k,c in G[i]:
            nj = j+T[k]
            if nj>=cmax+1:
                nj = cmax+1
            F[(i,j)].append((k,nj,c))
INFTY = 10**9
dist = [[INFTY for _ in range(cmax+2)] for _ in range(N+1)]
hist = [[0 for _ in range(cmax+2)] for _ in range(N+1)]
dist[1][T[1]] = T[1]
heap = [(T[1],1,T[1])]
while heap:
    d,x,j = heapq.heappop(heap)
    if dist[x][j]<d:continue
    hist[x][j] = 1
    for y,nj,c in F[(x,j)]:
        if dist[y][nj]>d+c//j+T[y] and hist[y][nj]==0:
            dist[y][nj] = d+c//j+T[y]
            heapq.heappush(heap,(dist[y][nj],y,nj))
ans = INFTY
for j in range(1,cmax+2):
    ans = min(ans,dist[N][j])
print(ans)
0