結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,304 KB
testcase_01 AC 38 ms
53,336 KB
testcase_02 AC 35 ms
53,184 KB
testcase_03 AC 36 ms
54,152 KB
testcase_04 WA -
testcase_05 AC 36 ms
53,224 KB
testcase_06 AC 35 ms
53,380 KB
testcase_07 AC 148 ms
74,524 KB
testcase_08 AC 162 ms
77,172 KB
testcase_09 AC 149 ms
74,380 KB
testcase_10 WA -
testcase_11 AC 111 ms
74,520 KB
testcase_12 AC 139 ms
73,880 KB
testcase_13 AC 104 ms
74,240 KB
testcase_14 AC 150 ms
73,844 KB
testcase_15 AC 217 ms
77,148 KB
testcase_16 AC 89 ms
74,376 KB
testcase_17 AC 67 ms
73,444 KB
testcase_18 AC 80 ms
71,980 KB
testcase_19 AC 74 ms
72,968 KB
testcase_20 AC 132 ms
73,952 KB
testcase_21 AC 97 ms
77,080 KB
testcase_22 AC 157 ms
74,572 KB
testcase_23 AC 81 ms
76,872 KB
testcase_24 AC 92 ms
73,176 KB
testcase_25 AC 69 ms
73,952 KB
testcase_26 AC 84 ms
73,708 KB
testcase_27 AC 87 ms
72,804 KB
testcase_28 AC 80 ms
65,960 KB
testcase_29 AC 91 ms
74,648 KB
testcase_30 AC 191 ms
74,596 KB
testcase_31 AC 152 ms
77,180 KB
testcase_32 AC 154 ms
76,968 KB
testcase_33 AC 45 ms
61,484 KB
testcase_34 AC 34 ms
53,136 KB
testcase_35 AC 34 ms
53,424 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[b] - 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[0])
0