結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 15:18:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 77,288 KB
最終ジャッジ日時 2024-09-30 20:33:05
合計ジャッジ時間 7,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,068 KB
testcase_01 AC 40 ms
54,160 KB
testcase_02 AC 40 ms
54,060 KB
testcase_03 AC 40 ms
52,740 KB
testcase_04 WA -
testcase_05 AC 45 ms
54,056 KB
testcase_06 AC 41 ms
53,196 KB
testcase_07 AC 262 ms
74,416 KB
testcase_08 AC 275 ms
76,764 KB
testcase_09 AC 257 ms
74,540 KB
testcase_10 WA -
testcase_11 AC 183 ms
76,992 KB
testcase_12 AC 288 ms
76,604 KB
testcase_13 AC 165 ms
76,528 KB
testcase_14 AC 239 ms
76,616 KB
testcase_15 AC 502 ms
77,200 KB
testcase_16 AC 128 ms
76,908 KB
testcase_17 AC 93 ms
76,532 KB
testcase_18 AC 122 ms
76,472 KB
testcase_19 AC 106 ms
76,616 KB
testcase_20 AC 198 ms
76,872 KB
testcase_21 AC 141 ms
76,880 KB
testcase_22 AC 292 ms
76,872 KB
testcase_23 AC 104 ms
76,808 KB
testcase_24 AC 148 ms
76,876 KB
testcase_25 AC 92 ms
76,524 KB
testcase_26 AC 131 ms
76,736 KB
testcase_27 AC 127 ms
73,440 KB
testcase_28 AC 114 ms
65,988 KB
testcase_29 AC 144 ms
77,012 KB
testcase_30 AC 300 ms
76,540 KB
testcase_31 AC 289 ms
77,076 KB
testcase_32 AC 290 ms
77,288 KB
testcase_33 AC 52 ms
61,208 KB
testcase_34 AC 42 ms
52,860 KB
testcase_35 AC 42 ms
52,736 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 ** 20

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[v] - c:
			dist[v] = dist[u] + A[v] - c
for u, v, c in g:
	if dist[v] < dist[u] + A[v] - c:
		exit(print("inf"))
if dist[0] > 0:
	exit(print("inf"))
print(dist[N - 1] + A[0])
0