結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,068 KB
testcase_01 AC 38 ms
53,892 KB
testcase_02 AC 37 ms
52,748 KB
testcase_03 AC 37 ms
52,208 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,944 KB
testcase_06 AC 36 ms
54,000 KB
testcase_07 AC 298 ms
79,372 KB
testcase_08 AC 320 ms
79,176 KB
testcase_09 AC 300 ms
79,164 KB
testcase_10 WA -
testcase_11 AC 154 ms
77,004 KB
testcase_12 AC 244 ms
77,164 KB
testcase_13 AC 147 ms
76,552 KB
testcase_14 AC 188 ms
76,776 KB
testcase_15 AC 404 ms
77,912 KB
testcase_16 AC 101 ms
76,672 KB
testcase_17 AC 81 ms
76,396 KB
testcase_18 AC 110 ms
76,520 KB
testcase_19 AC 92 ms
76,596 KB
testcase_20 AC 169 ms
76,976 KB
testcase_21 AC 114 ms
77,060 KB
testcase_22 AC 302 ms
77,336 KB
testcase_23 AC 92 ms
77,020 KB
testcase_24 AC 126 ms
76,792 KB
testcase_25 AC 84 ms
76,872 KB
testcase_26 AC 115 ms
76,512 KB
testcase_27 AC 243 ms
76,612 KB
testcase_28 AC 78 ms
75,916 KB
testcase_29 AC 119 ms
76,604 KB
testcase_30 AC 286 ms
77,228 KB
testcase_31 AC 74 ms
74,924 KB
testcase_32 AC 70 ms
73,688 KB
testcase_33 AC 43 ms
55,996 KB
testcase_34 AC 37 ms
53,548 KB
testcase_35 AC 36 ms
52,628 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 - A[b]))

d = [10 ** 100]*N
d[0] = 0
for i in range(N):
    update = False
    for x, y, z in g:
        if d[y] > d[x] + z:
            d[y] = d[x] + z
            update = True
    if not update:
        break
    if i == N - 1:
        exit(print("inf"))
print(A[0] - d[N - 1])
0