結果

問題 No.844 split game
ユーザー mkawa2mkawa2
提出日時 2019-07-11 08:57:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,045 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,876 KB
最終ジャッジ日時 2024-11-07 05:05:58
合計ジャッジ時間 21,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 386 ms
21,120 KB
testcase_01 AC 291 ms
19,232 KB
testcase_02 AC 836 ms
33,420 KB
testcase_03 AC 578 ms
26,352 KB
testcase_04 AC 301 ms
18,816 KB
testcase_05 AC 882 ms
33,868 KB
testcase_06 AC 273 ms
18,176 KB
testcase_07 AC 213 ms
17,156 KB
testcase_08 AC 138 ms
14,592 KB
testcase_09 AC 673 ms
28,952 KB
testcase_10 AC 925 ms
35,180 KB
testcase_11 AC 893 ms
34,568 KB
testcase_12 AC 651 ms
28,944 KB
testcase_13 AC 409 ms
21,712 KB
testcase_14 AC 369 ms
21,400 KB
testcase_15 AC 949 ms
35,212 KB
testcase_16 AC 1,045 ms
36,732 KB
testcase_17 AC 1,017 ms
36,876 KB
testcase_18 AC 946 ms
35,212 KB
testcase_19 AC 960 ms
35,904 KB
testcase_20 AC 947 ms
35,264 KB
testcase_21 AC 1,025 ms
36,860 KB
testcase_22 AC 999 ms
36,860 KB
testcase_23 AC 56 ms
11,648 KB
testcase_24 AC 92 ms
12,928 KB
testcase_25 AC 67 ms
12,032 KB
testcase_26 AC 47 ms
11,264 KB
testcase_27 AC 84 ms
12,544 KB
testcase_28 AC 38 ms
11,136 KB
testcase_29 AC 80 ms
12,416 KB
testcase_30 AC 93 ms
12,800 KB
testcase_31 AC 83 ms
12,544 KB
testcase_32 AC 40 ms
11,264 KB
testcase_33 AC 103 ms
12,928 KB
testcase_34 AC 72 ms
12,032 KB
testcase_35 AC 119 ms
13,440 KB
testcase_36 AC 83 ms
12,288 KB
testcase_37 AC 166 ms
14,848 KB
testcase_38 AC 340 ms
19,584 KB
testcase_39 AC 709 ms
28,616 KB
testcase_40 AC 205 ms
15,972 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 32 ms
10,752 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 31 ms
10,752 KB
testcase_49 AC 31 ms
10,752 KB
testcase_50 AC 32 ms
10,752 KB
testcase_51 AC 31 ms
10,880 KB
testcase_52 AC 30 ms
10,752 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 30 ms
10,880 KB
testcase_57 AC 31 ms
10,752 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter

def update(i, x):
    while i < n + 1:
        if x > bit[i]:
            bit[i] = x
        i += i & -i

def get(i):
    mx = 0
    while i > 0:
        if mx < bit[i]:
            mx = bit[i]
        i -= i & -i
    return mx

n, m, a = map(int, input().split())
ku = [list(map(int, input().split())) for _ in range(m)]
ku.sort(key=itemgetter(1))
bit = [0] * (n + 1)
dp = [-a] * (n + 1)
for l, r, p in ku:
    if l - 1:
        dp[r] = max(dp[l - 1] + p - a, get(l - 1) + p - 2 * a, dp[r])
        update(r, dp[r])
    else:
        dp[r] = max(p - a, dp[r])
        update(r, dp[r])
update(n,dp[n]+a)
print(get(n))
0