結果

問題 No.844 split game
ユーザー roarisroaris
提出日時 2019-12-25 15:35:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,555 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,608 KB
最終ジャッジ日時 2024-09-25 03:12:13
合計ジャッジ時間 13,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 231 ms
82,256 KB
testcase_07 AC 204 ms
82,188 KB
testcase_08 WA -
testcase_09 AC 374 ms
87,524 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 378 ms
87,204 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 338 ms
91,420 KB
testcase_16 AC 477 ms
92,608 KB
testcase_17 AC 457 ms
92,124 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 446 ms
91,624 KB
testcase_22 AC 456 ms
92,284 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 84 ms
76,968 KB
testcase_27 AC 137 ms
78,464 KB
testcase_28 AC 67 ms
74,496 KB
testcase_29 WA -
testcase_30 AC 136 ms
78,708 KB
testcase_31 WA -
testcase_32 AC 79 ms
76,836 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 133 ms
78,584 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 38 ms
52,480 KB
testcase_42 AC 39 ms
52,608 KB
testcase_43 AC 38 ms
52,352 KB
testcase_44 AC 38 ms
52,480 KB
testcase_45 AC 38 ms
52,096 KB
testcase_46 AC 38 ms
52,352 KB
testcase_47 AC 38 ms
52,608 KB
testcase_48 AC 37 ms
52,224 KB
testcase_49 AC 38 ms
52,224 KB
testcase_50 AC 37 ms
52,352 KB
testcase_51 AC 38 ms
52,608 KB
testcase_52 AC 37 ms
52,352 KB
testcase_53 WA -
testcase_54 AC 37 ms
52,608 KB
testcase_55 AC 38 ms
52,736 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class SegmentTree:
    def __init__(self, N, func, ele):
        n_ = 1
        
        while n_<N:
            n_ *= 2
            
        self.n = n_
        self.func = func
        self.ele = ele
        self.arr = [self.ele]*(2*self.n-1)
    
    def update(self, k, a):
        k += self.n-1
        self.arr[k] = a
        
        while k>0:
            k = (k-1)//2
            self.arr[k] = self.func(self.arr[2*k+1], self.arr[2*k+2])
        
    def query(self, l, r):
        L, R = l+self.n, r+self.n
        res = self.ele
        
        while L<R:
            if R&1:
                R -= 1
                res = self.func(res, self.arr[R-1])
            
            if L&1:
                res = self.func(res, self.arr[L-1])
                L += 1
            
            L >>= 1
            R >>= 1
            
        return res

N, M, A = map(int, input().split())
lrp = [tuple(map(int, input().split())) for _ in range(M)]
lrp.sort(key=lambda k: k[0])
dp = [0]*N
st = SegmentTree(N, max, -10**18)

for i in range(N):
    st.update(i, 0)

ans = 0

for li, ri, pi in lrp:
    li -= 1
    ri -= 1
    
    if li==0:
        dp[ri] = max(dp[ri], pi-A)
    else:
        if dp[li-1]>0:
            dp[ri] = max(dp[ri], dp[li-1]+pi-A)
        else:
            dp[ri] = max(dp[ri], pi-2*A)
        
        if li>1:
            dp[ri] = max(dp[ri], st.query(0, li-1)+pi-2*A)
    
    if ri==N-1:
        dp[ri] += A
    
    st.update(ri, dp[ri])
    ans = max(ans, dp[ri])
        
print(ans)
0