結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
52,864 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 255 ms
74,644 KB
testcase_08 AC 246 ms
77,056 KB
testcase_09 AC 269 ms
74,496 KB
testcase_10 WA -
testcase_11 AC 179 ms
76,532 KB
testcase_12 AC 269 ms
76,800 KB
testcase_13 AC 154 ms
76,532 KB
testcase_14 AC 220 ms
76,488 KB
testcase_15 AC 463 ms
76,976 KB
testcase_16 AC 120 ms
76,852 KB
testcase_17 AC 93 ms
76,516 KB
testcase_18 AC 112 ms
76,368 KB
testcase_19 AC 101 ms
76,428 KB
testcase_20 AC 195 ms
76,908 KB
testcase_21 AC 138 ms
76,852 KB
testcase_22 AC 270 ms
76,764 KB
testcase_23 AC 98 ms
76,672 KB
testcase_24 AC 139 ms
76,800 KB
testcase_25 AC 91 ms
76,928 KB
testcase_26 AC 129 ms
76,388 KB
testcase_27 AC 127 ms
72,704 KB
testcase_28 AC 112 ms
66,048 KB
testcase_29 AC 140 ms
76,540 KB
testcase_30 AC 277 ms
76,800 KB
testcase_31 AC 267 ms
77,152 KB
testcase_32 AC 281 ms
76,856 KB
testcase_33 AC 53 ms
60,864 KB
testcase_34 AC 38 ms
52,736 KB
testcase_35 AC 38 ms
52,608 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))

if N == 5:
	assert(M <= 10)
	print("Yes")

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