結果

問題 No.844 split game
ユーザー neterukunneterukun
提出日時 2019-06-28 23:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-07-02 05:11:31
合計ジャッジ時間 9,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
81,536 KB
testcase_01 AC 113 ms
81,664 KB
testcase_02 AC 234 ms
89,300 KB
testcase_03 AC 177 ms
85,120 KB
testcase_04 AC 128 ms
82,048 KB
testcase_05 AC 283 ms
89,440 KB
testcase_06 AC 120 ms
80,512 KB
testcase_07 AC 104 ms
79,872 KB
testcase_08 AC 97 ms
78,464 KB
testcase_09 AC 211 ms
86,912 KB
testcase_10 AC 271 ms
90,604 KB
testcase_11 AC 285 ms
89,792 KB
testcase_12 AC 204 ms
87,440 KB
testcase_13 AC 152 ms
82,432 KB
testcase_14 AC 156 ms
83,464 KB
testcase_15 AC 259 ms
90,620 KB
testcase_16 AC 277 ms
92,160 KB
testcase_17 AC 275 ms
91,684 KB
testcase_18 AC 279 ms
92,288 KB
testcase_19 AC 301 ms
91,776 KB
testcase_20 AC 265 ms
91,520 KB
testcase_21 AC 274 ms
92,032 KB
testcase_22 AC 277 ms
91,392 KB
testcase_23 AC 67 ms
71,424 KB
testcase_24 AC 87 ms
77,312 KB
testcase_25 AC 65 ms
71,424 KB
testcase_26 AC 60 ms
67,712 KB
testcase_27 AC 67 ms
73,728 KB
testcase_28 AC 56 ms
64,896 KB
testcase_29 AC 85 ms
77,056 KB
testcase_30 AC 82 ms
77,332 KB
testcase_31 AC 84 ms
77,056 KB
testcase_32 AC 59 ms
66,304 KB
testcase_33 AC 77 ms
77,568 KB
testcase_34 AC 61 ms
70,784 KB
testcase_35 AC 76 ms
77,120 KB
testcase_36 AC 62 ms
72,960 KB
testcase_37 AC 87 ms
78,336 KB
testcase_38 AC 123 ms
80,896 KB
testcase_39 AC 206 ms
87,256 KB
testcase_40 AC 97 ms
78,828 KB
testcase_41 AC 39 ms
52,352 KB
testcase_42 AC 40 ms
52,608 KB
testcase_43 AC 38 ms
52,608 KB
testcase_44 AC 38 ms
52,480 KB
testcase_45 AC 40 ms
52,480 KB
testcase_46 AC 39 ms
52,684 KB
testcase_47 AC 40 ms
52,096 KB
testcase_48 AC 40 ms
52,608 KB
testcase_49 AC 40 ms
52,096 KB
testcase_50 AC 39 ms
52,480 KB
testcase_51 AC 40 ms
52,480 KB
testcase_52 AC 41 ms
52,224 KB
testcase_53 AC 41 ms
52,352 KB
testcase_54 AC 42 ms
52,224 KB
testcase_55 AC 40 ms
52,736 KB
testcase_56 AC 40 ms
52,480 KB
testcase_57 AC 39 ms
52,224 KB
testcase_58 AC 39 ms
52,224 KB
testcase_59 AC 40 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter


input = sys.stdin.readline
n, m, a = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]

info = sorted(info, key = itemgetter(1)) + [[-1, -1, -1]] # 番兵

dp = [-float("inf")]*(n+1)
dp[0] = 0
end = 0
max_dp = 0
for i in range(1, n + 1):
    if info[end][1] == i:
        while True:
            #print(end, info[end][0], info[end][1])
            #print(max_dp)
            if i == n:
                dp[i] = max(dp[i], max_dp, dp[info[end][0] - 1] + info[end][2])
            else:
                dp[i] = max(dp[i], max_dp - a, dp[info[end][0] - 1] + info[end][2] - a)
            end += 1
            if info[end][1] != i:
                break
        max_dp = max(max_dp, dp[i])
    else:
        dp[i] = max_dp - a
print(max(dp))
0