結果

問題 No.844 split game
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-23 02:07:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 2,024 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 94,952 KB
最終ジャッジ日時 2024-09-21 21:12:35
合計ジャッジ時間 13,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
84,684 KB
testcase_01 AC 230 ms
88,096 KB
testcase_02 AC 289 ms
87,640 KB
testcase_03 AC 309 ms
89,560 KB
testcase_04 AC 257 ms
83,324 KB
testcase_05 AC 431 ms
93,004 KB
testcase_06 AC 250 ms
84,188 KB
testcase_07 AC 205 ms
85,484 KB
testcase_08 AC 191 ms
81,144 KB
testcase_09 AC 281 ms
84,380 KB
testcase_10 AC 403 ms
90,784 KB
testcase_11 AC 372 ms
92,784 KB
testcase_12 AC 285 ms
84,260 KB
testcase_13 AC 262 ms
81,736 KB
testcase_14 AC 287 ms
86,312 KB
testcase_15 AC 417 ms
94,196 KB
testcase_16 AC 403 ms
94,180 KB
testcase_17 AC 390 ms
94,952 KB
testcase_18 AC 381 ms
93,800 KB
testcase_19 AC 389 ms
93,680 KB
testcase_20 AC 417 ms
94,180 KB
testcase_21 AC 376 ms
94,052 KB
testcase_22 AC 406 ms
93,540 KB
testcase_23 AC 124 ms
78,336 KB
testcase_24 AC 164 ms
79,108 KB
testcase_25 AC 125 ms
77,824 KB
testcase_26 AC 109 ms
77,504 KB
testcase_27 AC 147 ms
77,696 KB
testcase_28 AC 100 ms
76,928 KB
testcase_29 AC 147 ms
78,632 KB
testcase_30 AC 164 ms
78,848 KB
testcase_31 AC 155 ms
78,560 KB
testcase_32 AC 90 ms
77,184 KB
testcase_33 AC 125 ms
77,568 KB
testcase_34 AC 114 ms
77,440 KB
testcase_35 AC 126 ms
77,824 KB
testcase_36 AC 117 ms
77,824 KB
testcase_37 AC 136 ms
77,824 KB
testcase_38 AC 196 ms
80,772 KB
testcase_39 AC 336 ms
84,192 KB
testcase_40 AC 231 ms
83,860 KB
testcase_41 AC 37 ms
52,096 KB
testcase_42 AC 37 ms
51,968 KB
testcase_43 AC 37 ms
52,096 KB
testcase_44 AC 38 ms
52,608 KB
testcase_45 AC 38 ms
52,224 KB
testcase_46 AC 39 ms
52,352 KB
testcase_47 AC 38 ms
52,224 KB
testcase_48 AC 38 ms
52,224 KB
testcase_49 AC 36 ms
52,096 KB
testcase_50 AC 38 ms
52,352 KB
testcase_51 AC 39 ms
52,480 KB
testcase_52 AC 39 ms
52,352 KB
testcase_53 AC 38 ms
52,480 KB
testcase_54 AC 37 ms
52,224 KB
testcase_55 AC 38 ms
52,480 KB
testcase_56 AC 39 ms
52,608 KB
testcase_57 AC 39 ms
52,608 KB
testcase_58 AC 39 ms
52,224 KB
testcase_59 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, init_val, ide_ele, segfunc):
        self.n = len(init_val)
        self.num = 2**(self.n-1).bit_length()
        self.ide_ele = ide_ele
        self.segfunc = segfunc
        self.seg = [ide_ele]*2*self.num
        # set_val
        for i in range(self.n):
            self.seg[i+self.num] = init_val[i]
        # built
        for i in range(self.num-1, 0, -1):
            self.seg[i] = self.segfunc(self.seg[2*i], self.seg[2*i+1])

    def update(self, k, x):
        k += self.num
        self.seg[k] = x
        while k:
            k = k >> 1
            self.seg[k] = self.segfunc(self.seg[2*k], self.seg[2*k+1])

    def query(self, l, r):
        if r <= l:
            return self.ide_ele
        l += self.num
        r += self.num
        lres = self.ide_ele
        rres = self.ide_ele
        while l < r:
            if r & 1:
                r -= 1
                rres = self.segfunc(self.seg[r], rres)
            if l & 1:
                lres = self.segfunc(lres, self.seg[l])
                l += 1
            l = l >> 1
            r = r >> 1
        res = self.segfunc(lres, rres)
        return res

    def __str__(self): # for debug
        arr = [self.query(i,i+1) for i in range(self.n)]
        return str(arr)

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

INF = 10**18

def main():
    n, m, a = map(int, input().split())
    L = [0]*n
    R = [[] for i in range(n)]
    for i in range(m):
        l, r, p = map(int, input().split())
        l, r = l-1, r-1
        R[r].append((l, p))

    seg = SegTree([-INF]*(n+2), -INF, max)
    seg.update(0, 0)
    for i in range(n):
        for l, p in R[i]:
            t = max(seg.query(0, l)-a, seg.query(l, l+1))
            if i != n-1:
                seg.update(i+1, max(seg.query(i+1, i+2), t+p-a))
            else:
                seg.update(i+1, max(seg.query(i+1, i+2), t+p))
    #print(seg)
    print(seg.query(0, n+1))

if __name__ == '__main__':
    main()
0