結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 15:28:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 78,188 KB
最終ジャッジ日時 2024-09-30 20:43:57
合計ジャッジ時間 8,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 378 ms
77,248 KB
testcase_10 WA -
testcase_11 AC 264 ms
76,864 KB
testcase_12 AC 416 ms
77,368 KB
testcase_13 AC 240 ms
76,788 KB
testcase_14 AC 354 ms
76,944 KB
testcase_15 AC 698 ms
77,784 KB
testcase_16 AC 152 ms
76,832 KB
testcase_17 AC 94 ms
77,072 KB
testcase_18 AC 133 ms
76,648 KB
testcase_19 AC 110 ms
76,908 KB
testcase_20 AC 258 ms
77,164 KB
testcase_21 AC 172 ms
77,180 KB
testcase_22 AC 433 ms
77,232 KB
testcase_23 AC 119 ms
77,116 KB
testcase_24 AC 191 ms
77,156 KB
testcase_25 AC 98 ms
77,024 KB
testcase_26 AC 162 ms
76,724 KB
testcase_27 AC 184 ms
75,200 KB
testcase_28 AC 148 ms
67,524 KB
testcase_29 AC 178 ms
76,720 KB
testcase_30 AC 490 ms
77,188 KB
testcase_31 AC 436 ms
77,612 KB
testcase_32 AC 397 ms
76,900 KB
testcase_33 AC 51 ms
62,248 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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))

if N <= 5:
	print("inf")

inf = 10 ** 20

dist = [-inf] * N
dist[0] = 0
for i in range(N):
	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
now_dist = dist[:]
for i in range(N):
	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

if now_dist[N - 1] < dist[N - 1] or dist[0] > 0:
	exit(print("inf"))
print(dist[N - 1] + A[0])
0