結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,160 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 38 ms
52,748 KB
testcase_03 AC 36 ms
53,096 KB
testcase_04 AC 37 ms
53,064 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 449 ms
77,220 KB
testcase_10 AC 38 ms
53,284 KB
testcase_11 AC 223 ms
76,460 KB
testcase_12 AC 710 ms
77,000 KB
testcase_13 AC 185 ms
76,456 KB
testcase_14 AC 597 ms
77,476 KB
testcase_15 AC 861 ms
77,232 KB
testcase_16 AC 113 ms
76,320 KB
testcase_17 AC 76 ms
73,644 KB
testcase_18 AC 172 ms
76,372 KB
testcase_19 AC 104 ms
76,504 KB
testcase_20 AC 267 ms
76,528 KB
testcase_21 AC 121 ms
76,440 KB
testcase_22 AC 705 ms
77,276 KB
testcase_23 AC 88 ms
76,352 KB
testcase_24 AC 152 ms
76,320 KB
testcase_25 AC 72 ms
73,640 KB
testcase_26 AC 181 ms
76,952 KB
testcase_27 AC 509 ms
77,496 KB
testcase_28 AC 657 ms
76,796 KB
testcase_29 AC 158 ms
76,364 KB
testcase_30 AC 726 ms
77,404 KB
testcase_31 AC 1,389 ms
78,024 KB
testcase_32 AC 763 ms
77,756 KB
testcase_33 AC 54 ms
63,284 KB
testcase_34 AC 37 ms
52,652 KB
testcase_35 AC 36 ms
53,936 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 _ in range(2 * n):
	for u in range(2 * n):
		for v, w in g[u]:
			if v == 2 * n - 1 and dist[v] > dist[u] + w:
				print("inf")
				exit()
			dist[v] = min(dist[v], dist[u] + w)

print(-dist[-1])
0