結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,000 KB
testcase_01 AC 34 ms
53,496 KB
testcase_02 AC 34 ms
52,884 KB
testcase_03 AC 35 ms
53,648 KB
testcase_04 WA -
testcase_05 AC 34 ms
53,440 KB
testcase_06 AC 37 ms
52,820 KB
testcase_07 AC 147 ms
74,336 KB
testcase_08 AC 164 ms
77,244 KB
testcase_09 AC 152 ms
74,236 KB
testcase_10 WA -
testcase_11 AC 113 ms
73,536 KB
testcase_12 AC 141 ms
74,136 KB
testcase_13 AC 109 ms
74,016 KB
testcase_14 AC 153 ms
74,244 KB
testcase_15 AC 228 ms
77,424 KB
testcase_16 AC 93 ms
74,168 KB
testcase_17 AC 71 ms
74,176 KB
testcase_18 AC 83 ms
72,196 KB
testcase_19 AC 75 ms
73,036 KB
testcase_20 AC 136 ms
74,200 KB
testcase_21 AC 98 ms
77,220 KB
testcase_22 AC 159 ms
74,216 KB
testcase_23 AC 78 ms
77,140 KB
testcase_24 AC 94 ms
72,992 KB
testcase_25 AC 72 ms
74,316 KB
testcase_26 AC 86 ms
73,276 KB
testcase_27 AC 85 ms
73,160 KB
testcase_28 AC 78 ms
66,912 KB
testcase_29 AC 91 ms
73,712 KB
testcase_30 AC 197 ms
74,108 KB
testcase_31 AC 154 ms
77,556 KB
testcase_32 AC 163 ms
76,996 KB
testcase_33 AC 46 ms
60,268 KB
testcase_34 AC 36 ms
54,092 KB
testcase_35 AC 35 ms
52,840 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])
0