結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:18:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 77,236 KB
最終ジャッジ日時 2024-09-30 19:19:23
合計ジャッジ時間 5,034 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,932 KB
testcase_01 AC 38 ms
53,288 KB
testcase_02 AC 38 ms
52,556 KB
testcase_03 AC 39 ms
52,944 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,624 KB
testcase_06 AC 38 ms
52,404 KB
testcase_07 AC 173 ms
74,008 KB
testcase_08 AC 190 ms
76,736 KB
testcase_09 AC 173 ms
74,664 KB
testcase_10 WA -
testcase_11 AC 120 ms
73,664 KB
testcase_12 AC 139 ms
74,208 KB
testcase_13 AC 109 ms
73,404 KB
testcase_14 AC 129 ms
73,620 KB
testcase_15 AC 225 ms
77,236 KB
testcase_16 AC 98 ms
73,440 KB
testcase_17 AC 74 ms
74,040 KB
testcase_18 AC 83 ms
72,572 KB
testcase_19 AC 74 ms
72,384 KB
testcase_20 AC 137 ms
74,208 KB
testcase_21 AC 105 ms
76,856 KB
testcase_22 AC 161 ms
74,224 KB
testcase_23 AC 93 ms
76,736 KB
testcase_24 AC 97 ms
73,900 KB
testcase_25 AC 76 ms
73,812 KB
testcase_26 AC 92 ms
72,820 KB
testcase_27 AC 125 ms
73,492 KB
testcase_28 AC 60 ms
65,512 KB
testcase_29 AC 97 ms
73,284 KB
testcase_30 AC 191 ms
73,888 KB
testcase_31 AC 74 ms
74,916 KB
testcase_32 AC 72 ms
74,120 KB
testcase_33 AC 45 ms
55,872 KB
testcase_34 AC 37 ms
53,432 KB
testcase_35 AC 36 ms
53,008 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[b]))

d = [10 ** 18]*N
d[0] = -A[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(-d[N - 1])
0