結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:29:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 77,304 KB
最終ジャッジ日時 2024-09-30 19:36:29
合計ジャッジ時間 5,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,488 KB
testcase_01 AC 39 ms
53,508 KB
testcase_02 AC 38 ms
53,792 KB
testcase_03 AC 39 ms
53,220 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 39 ms
53,700 KB
testcase_07 AC 171 ms
73,912 KB
testcase_08 AC 188 ms
77,012 KB
testcase_09 AC 168 ms
74,776 KB
testcase_10 WA -
testcase_11 AC 130 ms
74,372 KB
testcase_12 AC 168 ms
74,496 KB
testcase_13 AC 118 ms
74,104 KB
testcase_14 AC 171 ms
73,596 KB
testcase_15 AC 239 ms
77,096 KB
testcase_16 AC 100 ms
74,720 KB
testcase_17 AC 79 ms
73,992 KB
testcase_18 AC 94 ms
73,412 KB
testcase_19 AC 85 ms
73,268 KB
testcase_20 AC 148 ms
74,516 KB
testcase_21 AC 112 ms
76,868 KB
testcase_22 AC 185 ms
74,308 KB
testcase_23 AC 88 ms
77,148 KB
testcase_24 AC 104 ms
73,132 KB
testcase_25 AC 79 ms
74,008 KB
testcase_26 AC 100 ms
72,460 KB
testcase_27 AC 95 ms
72,216 KB
testcase_28 AC 86 ms
66,392 KB
testcase_29 AC 101 ms
73,272 KB
testcase_30 AC 210 ms
74,692 KB
testcase_31 AC 160 ms
77,156 KB
testcase_32 AC 168 ms
77,304 KB
testcase_33 AC 48 ms
61,276 KB
testcase_34 AC 39 ms
53,160 KB
testcase_35 AC 39 ms
52,964 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))

inf = 10 ** 18

dist = [-inf] * N
dist[0] = 0
for i in range(N - 1):
	for u, v, c in g:
		if dist[u] != -inf and dist[v] < dist[u] + A[u] - c:
			dist[v] = dist[u] + A[u] - c
for u, v, c in g:
	if dist[v] < dist[u] + A[u] - c:
		exit(print("inf"))
print(dist[N - 1] + A[N - 1] if dist[N - 1] > -inf else "inf")
0