結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,608 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 182 ms
76,756 KB
testcase_12 AC 272 ms
77,084 KB
testcase_13 AC 162 ms
76,216 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 118 ms
76,980 KB
testcase_17 AC 91 ms
76,484 KB
testcase_18 WA -
testcase_19 AC 98 ms
76,544 KB
testcase_20 AC 179 ms
76,540 KB
testcase_21 AC 134 ms
76,984 KB
testcase_22 WA -
testcase_23 AC 99 ms
76,740 KB
testcase_24 AC 140 ms
76,580 KB
testcase_25 AC 92 ms
76,632 KB
testcase_26 AC 128 ms
76,544 KB
testcase_27 WA -
testcase_28 AC 110 ms
65,664 KB
testcase_29 AC 140 ms
76,512 KB
testcase_30 WA -
testcase_31 AC 269 ms
77,000 KB
testcase_32 AC 272 ms
75,376 KB
testcase_33 AC 50 ms
60,672 KB
testcase_34 AC 37 ms
52,608 KB
testcase_35 AC 37 ms
52,552 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
if dist[0] > 0:
	exit(print("inf"))
print(dist[N - 1] + A[0])
0