結果

問題 No.2712 Play more!
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-01 02:20:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 78,252 KB
最終ジャッジ日時 2024-09-30 21:39:31
合計ジャッジ時間 11,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,804 KB
testcase_01 AC 38 ms
53,020 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,620 KB
testcase_06 AC 38 ms
52,264 KB
testcase_07 AC 460 ms
77,588 KB
testcase_08 AC 502 ms
78,252 KB
testcase_09 AC 458 ms
77,288 KB
testcase_10 WA -
testcase_11 AC 227 ms
76,552 KB
testcase_12 AC 719 ms
77,424 KB
testcase_13 AC 188 ms
76,840 KB
testcase_14 AC 587 ms
77,616 KB
testcase_15 AC 842 ms
77,036 KB
testcase_16 AC 119 ms
76,612 KB
testcase_17 AC 78 ms
74,236 KB
testcase_18 AC 167 ms
76,244 KB
testcase_19 AC 100 ms
76,308 KB
testcase_20 AC 263 ms
76,916 KB
testcase_21 AC 115 ms
76,504 KB
testcase_22 AC 670 ms
76,904 KB
testcase_23 AC 81 ms
76,752 KB
testcase_24 AC 153 ms
76,384 KB
testcase_25 AC 72 ms
74,248 KB
testcase_26 AC 178 ms
76,568 KB
testcase_27 AC 512 ms
77,380 KB
testcase_28 AC 398 ms
76,356 KB
testcase_29 AC 158 ms
76,600 KB
testcase_30 AC 700 ms
77,392 KB
testcase_31 AC 964 ms
77,872 KB
testcase_32 AC 412 ms
77,732 KB
testcase_33 AC 49 ms
61,580 KB
testcase_34 AC 37 ms
52,500 KB
testcase_35 AC 37 ms
52,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
g = [[] for _ in range(2 * n)]
for i in range(n):
	g[i].append((i + n, -a[i]))

for _ in range(m):
	a, b, c = map(int, input().split())
	a -= 1
	b -= 1
	g[a + n].append((b, c))

INF = 10 ** 18
dist = [INF] * (2 * n)
dist[0] = 0

for _ in range(2 * n - 1):
	for u in range(2 * n):
		for v, w in g[u]:
			dist[v] = min(dist[v], dist[u] + w)

for u in range(2 * n):
	for v, w in g[u]:
		if dist[v] > dist[u] + w:
			print("inf")
			exit()

print(-dist[-1])
0