結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 15:20:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,956 KB
最終ジャッジ日時 2024-09-30 20:35:03
合計ジャッジ時間 9,479 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,408 KB
testcase_01 AC 41 ms
52,600 KB
testcase_02 AC 42 ms
54,104 KB
testcase_03 AC 43 ms
53,176 KB
testcase_04 AC 42 ms
52,916 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 374 ms
77,364 KB
testcase_10 AC 43 ms
54,120 KB
testcase_11 AC 273 ms
76,780 KB
testcase_12 AC 439 ms
77,112 KB
testcase_13 AC 249 ms
76,704 KB
testcase_14 AC 362 ms
76,964 KB
testcase_15 AC 796 ms
77,336 KB
testcase_16 AC 163 ms
77,224 KB
testcase_17 AC 111 ms
76,336 KB
testcase_18 AC 154 ms
76,780 KB
testcase_19 AC 125 ms
76,664 KB
testcase_20 AC 297 ms
76,836 KB
testcase_21 AC 204 ms
77,408 KB
testcase_22 AC 460 ms
77,020 KB
testcase_23 AC 124 ms
77,164 KB
testcase_24 AC 196 ms
76,896 KB
testcase_25 AC 113 ms
76,732 KB
testcase_26 AC 171 ms
76,644 KB
testcase_27 AC 194 ms
75,548 KB
testcase_28 AC 161 ms
68,072 KB
testcase_29 AC 195 ms
76,708 KB
testcase_30 AC 508 ms
77,028 KB
testcase_31 AC 500 ms
77,532 KB
testcase_32 AC 457 ms
76,944 KB
testcase_33 AC 64 ms
62,468 KB
testcase_34 AC 46 ms
52,704 KB
testcase_35 AC 45 ms
52,400 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]:
	exit(print("inf"))
print(dist[N - 1] + A[0])
0