結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:06:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 77,624 KB
最終ジャッジ日時 2024-09-30 18:57:04
合計ジャッジ時間 3,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,748 KB
testcase_01 AC 41 ms
52,944 KB
testcase_02 AC 39 ms
53,164 KB
testcase_03 AC 40 ms
53,768 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,168 KB
testcase_06 AC 42 ms
53,324 KB
testcase_07 AC 86 ms
77,016 KB
testcase_08 AC 104 ms
77,576 KB
testcase_09 AC 84 ms
77,344 KB
testcase_10 WA -
testcase_11 AC 66 ms
71,688 KB
testcase_12 AC 69 ms
73,188 KB
testcase_13 AC 66 ms
69,984 KB
testcase_14 AC 66 ms
71,492 KB
testcase_15 AC 71 ms
74,556 KB
testcase_16 AC 66 ms
70,580 KB
testcase_17 AC 64 ms
70,416 KB
testcase_18 AC 64 ms
69,700 KB
testcase_19 AC 65 ms
69,476 KB
testcase_20 AC 69 ms
73,060 KB
testcase_21 AC 69 ms
71,732 KB
testcase_22 AC 71 ms
72,396 KB
testcase_23 AC 68 ms
72,040 KB
testcase_24 AC 65 ms
71,024 KB
testcase_25 AC 67 ms
71,856 KB
testcase_26 AC 65 ms
69,604 KB
testcase_27 AC 67 ms
70,904 KB
testcase_28 AC 55 ms
65,404 KB
testcase_29 AC 66 ms
70,012 KB
testcase_30 AC 73 ms
73,452 KB
testcase_31 WA -
testcase_32 AC 119 ms
77,624 KB
testcase_33 AC 45 ms
55,004 KB
testcase_34 AC 38 ms
53,620 KB
testcase_35 AC 39 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N, M = map(int, input().split())
A = list(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))
d = [-10 ** 18] * N
d[0] = A[0]
q = [(-A[0], 0)]
while q:
	di, u = heappop(q)
	di = -di
	if di < d[u]:
		continue
	for v, c in g[u]:
		if di + A[v] - c > d[v] > -10 ** 18:
			exit(print("inf"))
		if di + A[v] - c > d[v]:
			d[v] = di + A[v] - c
			heappush(q, (-d[v], v))
print(d[N - 1])
0