結果

問題 No.844 split game
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 21:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 96,644 KB
最終ジャッジ日時 2024-10-05 12:09:00
合計ジャッジ時間 8,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
82,844 KB
testcase_01 AC 125 ms
90,884 KB
testcase_02 AC 166 ms
85,308 KB
testcase_03 AC 150 ms
91,588 KB
testcase_04 AC 110 ms
82,544 KB
testcase_05 AC 198 ms
93,460 KB
testcase_06 AC 121 ms
83,412 KB
testcase_07 AC 123 ms
90,728 KB
testcase_08 AC 107 ms
81,244 KB
testcase_09 AC 148 ms
81,032 KB
testcase_10 AC 201 ms
90,656 KB
testcase_11 AC 209 ms
96,068 KB
testcase_12 AC 142 ms
80,596 KB
testcase_13 AC 121 ms
79,316 KB
testcase_14 AC 136 ms
88,516 KB
testcase_15 AC 195 ms
95,948 KB
testcase_16 AC 217 ms
96,456 KB
testcase_17 AC 222 ms
96,584 KB
testcase_18 AC 191 ms
95,632 KB
testcase_19 AC 209 ms
95,612 KB
testcase_20 AC 194 ms
96,256 KB
testcase_21 AC 223 ms
96,644 KB
testcase_22 AC 210 ms
96,264 KB
testcase_23 AC 80 ms
77,528 KB
testcase_24 AC 96 ms
78,156 KB
testcase_25 AC 78 ms
77,200 KB
testcase_26 AC 82 ms
77,320 KB
testcase_27 AC 80 ms
76,888 KB
testcase_28 AC 62 ms
69,940 KB
testcase_29 AC 99 ms
77,872 KB
testcase_30 AC 90 ms
77,648 KB
testcase_31 AC 86 ms
77,144 KB
testcase_32 AC 80 ms
77,028 KB
testcase_33 AC 76 ms
76,692 KB
testcase_34 AC 72 ms
76,768 KB
testcase_35 AC 76 ms
76,620 KB
testcase_36 AC 77 ms
76,604 KB
testcase_37 AC 85 ms
76,748 KB
testcase_38 AC 107 ms
78,512 KB
testcase_39 AC 147 ms
81,960 KB
testcase_40 AC 104 ms
86,372 KB
testcase_41 AC 40 ms
53,952 KB
testcase_42 AC 38 ms
54,120 KB
testcase_43 AC 38 ms
55,544 KB
testcase_44 AC 39 ms
55,244 KB
testcase_45 AC 40 ms
54,308 KB
testcase_46 AC 41 ms
55,388 KB
testcase_47 AC 40 ms
53,960 KB
testcase_48 AC 42 ms
54,240 KB
testcase_49 AC 41 ms
54,984 KB
testcase_50 AC 40 ms
54,700 KB
testcase_51 AC 40 ms
54,040 KB
testcase_52 AC 40 ms
53,608 KB
testcase_53 AC 39 ms
54,296 KB
testcase_54 AC 39 ms
54,592 KB
testcase_55 AC 40 ms
55,084 KB
testcase_56 AC 41 ms
54,024 KB
testcase_57 AC 40 ms
54,256 KB
testcase_58 AC 41 ms
53,892 KB
testcase_59 AC 41 ms
55,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

n, m, a = map(int, input().split())
e = collections.defaultdict(list)
for _ in range(m):
    l, r, p = map(int, input().split())
    e[r].append((l - 1, p))


dp = [-float('inf')] * (n + 1)
dp[0] = 0
maximum = 0
for r in range(1, n + 1):
    dp[r] = max(dp[r], maximum - a)
    for l, p in e[r]:
        if r == n:
            dp[r] = max(dp[r], dp[l] + p) 
        else:
            dp[r] = max(dp[r], dp[l] + p - a) 
    maximum = max(maximum, dp[r])

print(maximum)
0