結果

問題 No.844 split game
ユーザー mkawa2mkawa2
提出日時 2019-07-11 08:43:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-11-07 04:45:01
合計ジャッジ時間 22,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
21,120 KB
testcase_01 AC 289 ms
19,224 KB
testcase_02 AC 833 ms
33,412 KB
testcase_03 AC 570 ms
26,352 KB
testcase_04 AC 304 ms
18,816 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 920 ms
35,204 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 929 ms
35,204 KB
testcase_19 AC 940 ms
35,892 KB
testcase_20 AC 936 ms
35,404 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 45 ms
11,264 KB
testcase_27 WA -
testcase_28 AC 38 ms
11,136 KB
testcase_29 AC 81 ms
12,416 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 39 ms
11,136 KB
testcase_33 AC 101 ms
12,928 KB
testcase_34 AC 70 ms
12,160 KB
testcase_35 AC 116 ms
13,312 KB
testcase_36 AC 82 ms
12,416 KB
testcase_37 AC 161 ms
14,848 KB
testcase_38 AC 336 ms
19,584 KB
testcase_39 AC 696 ms
28,612 KB
testcase_40 AC 202 ms
15,968 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 31 ms
10,880 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 WA -
testcase_49 AC 30 ms
10,880 KB
testcase_50 AC 30 ms
10,752 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 30 ms
10,880 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 AC 30 ms
10,880 KB
testcase_56 AC 30 ms
10,880 KB
testcase_57 AC 30 ms
10,880 KB
testcase_58 AC 30 ms
10,880 KB
testcase_59 AC 30 ms
10,880 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) - 2 * a, dp[r])
        update(r, dp[r])
    else:
        dp[r] = max(p - a, dp[r])
        update(r, dp[r])
dp[-1] += a
print(max(dp))
0