結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:25:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 77,300 KB
最終ジャッジ日時 2024-09-30 19:30:14
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,820 KB
testcase_01 AC 35 ms
53,340 KB
testcase_02 AC 33 ms
53,752 KB
testcase_03 AC 35 ms
54,124 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,204 KB
testcase_06 AC 37 ms
53,016 KB
testcase_07 AC 147 ms
74,256 KB
testcase_08 AC 161 ms
76,988 KB
testcase_09 AC 146 ms
73,688 KB
testcase_10 WA -
testcase_11 AC 114 ms
74,376 KB
testcase_12 AC 146 ms
74,704 KB
testcase_13 AC 103 ms
73,968 KB
testcase_14 AC 152 ms
73,908 KB
testcase_15 AC 218 ms
77,092 KB
testcase_16 AC 95 ms
74,292 KB
testcase_17 AC 75 ms
74,040 KB
testcase_18 AC 86 ms
73,004 KB
testcase_19 AC 77 ms
73,240 KB
testcase_20 AC 136 ms
74,132 KB
testcase_21 AC 99 ms
77,020 KB
testcase_22 AC 166 ms
74,504 KB
testcase_23 AC 79 ms
77,300 KB
testcase_24 AC 96 ms
74,648 KB
testcase_25 AC 74 ms
73,936 KB
testcase_26 AC 89 ms
72,812 KB
testcase_27 AC 87 ms
72,292 KB
testcase_28 AC 79 ms
66,404 KB
testcase_29 AC 97 ms
74,340 KB
testcase_30 AC 199 ms
74,088 KB
testcase_31 AC 155 ms
77,084 KB
testcase_32 AC 164 ms
76,996 KB
testcase_33 AC 49 ms
61,600 KB
testcase_34 AC 38 ms
54,456 KB
testcase_35 AC 35 ms
53,092 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, A[a] - c))

inf = 10 ** 18

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] + c:
			dist[v] = dist[u] + c
for u, v, c in g:
	if dist[u] != -inf and dist[v] < dist[u] + c:
		exit(print("inf"))
print(dist[N - 1] + A[N - 1] if dist[N - 1] > -inf else "inf")
0