結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:14:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 79,292 KB
最終ジャッジ日時 2024-09-30 19:12:12
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,520 KB
testcase_01 AC 35 ms
52,344 KB
testcase_02 AC 36 ms
52,676 KB
testcase_03 AC 34 ms
53,140 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,700 KB
testcase_06 AC 37 ms
52,876 KB
testcase_07 AC 303 ms
79,124 KB
testcase_08 AC 323 ms
79,244 KB
testcase_09 AC 356 ms
79,292 KB
testcase_10 WA -
testcase_11 AC 182 ms
77,152 KB
testcase_12 AC 247 ms
77,492 KB
testcase_13 AC 137 ms
76,568 KB
testcase_14 AC 191 ms
77,252 KB
testcase_15 AC 423 ms
77,724 KB
testcase_16 AC 99 ms
76,936 KB
testcase_17 AC 78 ms
76,524 KB
testcase_18 AC 100 ms
76,976 KB
testcase_19 AC 87 ms
76,532 KB
testcase_20 AC 171 ms
77,160 KB
testcase_21 AC 109 ms
76,968 KB
testcase_22 AC 311 ms
77,576 KB
testcase_23 AC 84 ms
77,332 KB
testcase_24 AC 121 ms
76,980 KB
testcase_25 AC 80 ms
76,652 KB
testcase_26 AC 120 ms
76,692 KB
testcase_27 AC 240 ms
76,944 KB
testcase_28 AC 78 ms
75,788 KB
testcase_29 AC 114 ms
76,988 KB
testcase_30 AC 284 ms
77,448 KB
testcase_31 AC 71 ms
75,100 KB
testcase_32 AC 68 ms
74,224 KB
testcase_33 AC 43 ms
55,980 KB
testcase_34 AC 38 ms
53,816 KB
testcase_35 AC 35 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N, M = map(int, input().split())
A = list(map(int, input().split()))
g = []
for _ in range(M):
	a, b, c = map(int, input().split())
	a -= 1
	b -= 1
	g.append((a, b, c - A[a]))

d = [10 ** 100]*N
d[0] = 0
for i in range(N):
    update = False
    for x, y, z in g:
        if d[y] > d[x] + z:
            d[y] = d[x] + z
            update = True
    if not update:
        break
    if i == N - 1:
        exit(print("inf"))
print(A[N - 1] - d[N - 1])
0