結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 15:22:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-30 20:36:39
合計ジャッジ時間 8,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 35 ms
52,460 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 381 ms
76,900 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 257 ms
76,900 KB
testcase_12 AC 391 ms
77,184 KB
testcase_13 AC 227 ms
77,056 KB
testcase_14 AC 330 ms
77,292 KB
testcase_15 AC 720 ms
77,824 KB
testcase_16 AC 152 ms
76,932 KB
testcase_17 AC 102 ms
76,800 KB
testcase_18 AC 143 ms
76,800 KB
testcase_19 AC 116 ms
76,800 KB
testcase_20 AC 281 ms
76,892 KB
testcase_21 AC 194 ms
77,056 KB
testcase_22 AC 420 ms
77,184 KB
testcase_23 AC 115 ms
76,928 KB
testcase_24 AC 185 ms
76,916 KB
testcase_25 AC 102 ms
76,888 KB
testcase_26 AC 164 ms
77,056 KB
testcase_27 AC 176 ms
75,136 KB
testcase_28 AC 144 ms
67,072 KB
testcase_29 AC 173 ms
76,992 KB
testcase_30 AC 444 ms
77,392 KB
testcase_31 AC 428 ms
77,344 KB
testcase_32 AC 440 ms
76,928 KB
testcase_33 AC 51 ms
61,696 KB
testcase_34 AC 38 ms
52,480 KB
testcase_35 AC 36 ms
52,352 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):
	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