結果

問題 No.1449 新プロランド
ユーザー ああいいああいい
提出日時 2022-06-03 08:19:31
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 792 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2024-06-06 11:10:43
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,480 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 118 ms
77,048 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 81 ms
74,112 KB
testcase_09 AC 41 ms
53,248 KB
testcase_10 AC 42 ms
53,248 KB
testcase_11 AC 40 ms
53,248 KB
testcase_12 AC 126 ms
77,340 KB
testcase_13 AC 42 ms
53,248 KB
testcase_14 AC 41 ms
53,376 KB
testcase_15 AC 43 ms
53,744 KB
testcase_16 AC 43 ms
54,144 KB
testcase_17 AC 82 ms
74,112 KB
testcase_18 AC 40 ms
52,864 KB
testcase_19 AC 40 ms
53,120 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 41 ms
53,376 KB
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 40 ms
53,504 KB
testcase_24 AC 39 ms
52,736 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 193 ms
79,092 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append((b,c))
    G[b].append((a,c))
T = list(map(int,input().split()))
inf = 1000
dist = [[10 ** 6] * (inf + 1) for _ in range(N)]
dist[0][T[0]] = 0
q = [(0,0,0)]
import heapq
while q:
    d,now,time = heapq.heappop(q)
    #print(d,now,time)
    if dist[now][time] < d:continue
    if now == N - 1:break
    time += T[now]
    d += T[now]
    if time > inf:
        time = inf
    for v,c in G[now]:
        tmp = d + c // time
        if dist[v][time] > tmp:
            dist[v][time] = tmp
            heapq.heappush(q,(tmp,v,time))
ans = 10 ** 6
for time in range(inf + 1):
    if ans > dist[-1][time]:
        ans = dist[-1][time]
print(ans)
0