結果

問題 No.844 split game
ユーザー maspymaspy
提出日時 2020-02-28 15:27:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,648 KB
最終ジャッジ日時 2024-10-13 16:25:40
合計ジャッジ時間 10,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
26,460 KB
testcase_01 AC 189 ms
27,456 KB
testcase_02 AC 294 ms
42,984 KB
testcase_03 AC 247 ms
35,756 KB
testcase_04 AC 123 ms
22,904 KB
testcase_05 AC 342 ms
45,056 KB
testcase_06 AC 124 ms
21,600 KB
testcase_07 AC 151 ms
22,640 KB
testcase_08 AC 78 ms
16,676 KB
testcase_09 AC 225 ms
34,112 KB
testcase_10 AC 361 ms
45,052 KB
testcase_11 AC 368 ms
46,544 KB
testcase_12 AC 204 ms
33,536 KB
testcase_13 AC 139 ms
25,404 KB
testcase_14 AC 182 ms
27,548 KB
testcase_15 AC 379 ms
48,528 KB
testcase_16 AC 400 ms
48,404 KB
testcase_17 AC 415 ms
48,408 KB
testcase_18 AC 397 ms
48,536 KB
testcase_19 AC 397 ms
48,648 KB
testcase_20 AC 405 ms
48,532 KB
testcase_21 AC 425 ms
48,536 KB
testcase_22 AC 414 ms
48,404 KB
testcase_23 AC 38 ms
12,032 KB
testcase_24 AC 53 ms
13,808 KB
testcase_25 AC 38 ms
12,288 KB
testcase_26 AC 35 ms
11,648 KB
testcase_27 AC 46 ms
13,056 KB
testcase_28 AC 39 ms
11,776 KB
testcase_29 AC 54 ms
13,308 KB
testcase_30 AC 54 ms
13,808 KB
testcase_31 AC 45 ms
13,148 KB
testcase_32 AC 35 ms
11,520 KB
testcase_33 AC 49 ms
13,816 KB
testcase_34 AC 40 ms
12,672 KB
testcase_35 AC 56 ms
14,424 KB
testcase_36 AC 47 ms
12,928 KB
testcase_37 AC 71 ms
16,700 KB
testcase_38 AC 114 ms
21,112 KB
testcase_39 AC 219 ms
32,020 KB
testcase_40 AC 121 ms
19,872 KB
testcase_41 AC 27 ms
10,496 KB
testcase_42 AC 28 ms
10,624 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 AC 27 ms
10,752 KB
testcase_46 AC 27 ms
10,752 KB
testcase_47 AC 28 ms
10,624 KB
testcase_48 AC 28 ms
10,496 KB
testcase_49 AC 26 ms
10,624 KB
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 29 ms
10,624 KB
testcase_52 AC 29 ms
10,624 KB
testcase_53 AC 27 ms
10,624 KB
testcase_54 AC 26 ms
10,624 KB
testcase_55 AC 26 ms
10,752 KB
testcase_56 AC 25 ms
10,624 KB
testcase_57 AC 27 ms
10,624 KB
testcase_58 AC 29 ms
10,752 KB
testcase_59 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
N, M, A = map(int, readline().split())
m = map(int, read().split())
LRP = zip(m, m, m)

# %%
intervals = [[] for _ in range(N + 1)]
for l, r, p in LRP:
    intervals[r].append((l, p))


# %%
dp = [0] + [-A] * N
dp_cummax = [0] * (N + 1)

for r in range(1, N + 1):
    for l, p in intervals[r]:
        x = dp[l - 1] + p - A
        if dp[r] < x:
            dp[r] = x
        if l > 1:
            x = dp_cummax[l - 2] + p - 2 * A
            if dp[r] < x:
                dp[r] = x
    dp_cummax[r] = max(dp_cummax[r - 1], dp[r])

dp[N] += A

# %%
print(max(dp))
0