結果

問題 No.2712 Play more!
ユーザー 👑 Nafmo2Nafmo2
提出日時 2024-01-23 03:39:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 77,732 KB
最終ジャッジ日時 2024-09-30 23:44:36
合計ジャッジ時間 6,900 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 258 ms
77,056 KB
testcase_08 AC 255 ms
77,732 KB
testcase_09 AC 234 ms
77,184 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 184 ms
77,028 KB
testcase_12 AC 247 ms
77,396 KB
testcase_13 AC 164 ms
77,108 KB
testcase_14 AC 216 ms
76,948 KB
testcase_15 AC 468 ms
77,032 KB
testcase_16 AC 146 ms
75,136 KB
testcase_17 AC 87 ms
73,088 KB
testcase_18 AC 117 ms
75,020 KB
testcase_19 AC 104 ms
74,328 KB
testcase_20 AC 198 ms
77,160 KB
testcase_21 AC 187 ms
76,672 KB
testcase_22 AC 265 ms
76,940 KB
testcase_23 AC 118 ms
76,700 KB
testcase_24 AC 146 ms
77,056 KB
testcase_25 AC 92 ms
73,856 KB
testcase_26 AC 138 ms
75,776 KB
testcase_27 AC 136 ms
75,392 KB
testcase_28 AC 107 ms
67,072 KB
testcase_29 AC 136 ms
76,808 KB
testcase_30 AC 298 ms
76,800 KB
testcase_31 AC 345 ms
76,868 KB
testcase_32 AC 353 ms
77,312 KB
testcase_33 AC 51 ms
61,184 KB
testcase_34 AC 37 ms
52,224 KB
testcase_35 AC 37 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 0x1FFFFFFFFFFFFFFF
N, M = map(int, input().split())
A = list(map(int, input().split()))
E = [0 for i in range(M)]
d = [-INF for i in range(N)]
update = [False for i in range(N)]
for i in range(M):
    a, b, c = map(int, input().split())
    E[i] = (a - 1, b - 1, A[b - 1] - c)
d[0] = A[0]
for i in range(N - 1):
    for s, t, cost in E:
        if d[s] == -INF:
            continue
        if d[t] < d[s] + cost:
            d[t] = d[s] + cost
for i in range(N):
    for s, t, cost in E:
        if d[s] == -INF:
            continue
        if d[t] < d[s] + cost:
            update[t] = True
        if update[s]:
            update[t] = True
for i in range(N):
    if update[i]:
        d[i] = INF
ans = "inf" if d[N-1] == INF else d[N-1]
print(ans)
0