結果

問題 No.2712 Play more!
ユーザー hiro1729hiro1729
提出日時 2024-03-31 14:27:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 77,276 KB
最終ジャッジ日時 2024-09-30 19:33:45
合計ジャッジ時間 5,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,528 KB
testcase_01 AC 42 ms
53,080 KB
testcase_02 AC 43 ms
53,928 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 WA -
testcase_05 AC 42 ms
52,980 KB
testcase_06 AC 40 ms
52,948 KB
testcase_07 AC 183 ms
74,840 KB
testcase_08 AC 189 ms
76,952 KB
testcase_09 AC 169 ms
74,444 KB
testcase_10 WA -
testcase_11 AC 130 ms
73,264 KB
testcase_12 AC 169 ms
73,884 KB
testcase_13 AC 123 ms
74,176 KB
testcase_14 AC 173 ms
73,276 KB
testcase_15 AC 294 ms
76,696 KB
testcase_16 AC 137 ms
74,068 KB
testcase_17 AC 101 ms
73,476 KB
testcase_18 AC 124 ms
72,628 KB
testcase_19 AC 101 ms
72,292 KB
testcase_20 AC 153 ms
74,320 KB
testcase_21 AC 114 ms
76,960 KB
testcase_22 AC 184 ms
74,272 KB
testcase_23 AC 96 ms
76,608 KB
testcase_24 AC 111 ms
73,456 KB
testcase_25 AC 83 ms
73,932 KB
testcase_26 AC 101 ms
72,520 KB
testcase_27 AC 101 ms
73,576 KB
testcase_28 AC 89 ms
65,564 KB
testcase_29 AC 108 ms
73,416 KB
testcase_30 AC 227 ms
74,844 KB
testcase_31 AC 175 ms
77,276 KB
testcase_32 AC 180 ms
77,172 KB
testcase_33 AC 56 ms
61,768 KB
testcase_34 AC 42 ms
53,412 KB
testcase_35 AC 42 ms
53,104 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[v] < dist[u] + c:
		exit(print("inf"))
print(dist[N - 1] + A[N - 1] if dist[N - 1] > -inf else "inf")
0