結果

問題 No.1826 Fruits Collecting
ユーザー tassei903tassei903
提出日時 2022-03-11 17:38:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,250 ms / 2,000 ms
コード長 2,146 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 181,372 KB
最終ジャッジ日時 2024-09-15 20:37:55
合計ジャッジ時間 27,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
67,200 KB
testcase_01 AC 91 ms
76,928 KB
testcase_02 AC 93 ms
76,800 KB
testcase_03 AC 98 ms
77,056 KB
testcase_04 AC 68 ms
68,096 KB
testcase_05 AC 469 ms
111,160 KB
testcase_06 AC 777 ms
142,368 KB
testcase_07 AC 569 ms
120,756 KB
testcase_08 AC 135 ms
79,872 KB
testcase_09 AC 775 ms
138,784 KB
testcase_10 AC 538 ms
114,800 KB
testcase_11 AC 515 ms
115,120 KB
testcase_12 AC 252 ms
90,708 KB
testcase_13 AC 170 ms
83,200 KB
testcase_14 AC 217 ms
86,784 KB
testcase_15 AC 1,223 ms
180,604 KB
testcase_16 AC 1,214 ms
181,240 KB
testcase_17 AC 1,250 ms
180,980 KB
testcase_18 AC 1,197 ms
180,472 KB
testcase_19 AC 1,189 ms
180,728 KB
testcase_20 AC 1,180 ms
181,372 KB
testcase_21 AC 1,187 ms
181,116 KB
testcase_22 AC 1,186 ms
181,248 KB
testcase_23 AC 1,196 ms
181,120 KB
testcase_24 AC 1,187 ms
181,368 KB
testcase_25 AC 40 ms
51,968 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 42 ms
52,224 KB
testcase_29 AC 41 ms
52,480 KB
testcase_30 AC 312 ms
95,084 KB
testcase_31 AC 574 ms
115,388 KB
testcase_32 AC 301 ms
93,168 KB
testcase_33 AC 881 ms
143,624 KB
testcase_34 AC 755 ms
130,564 KB
testcase_35 AC 226 ms
87,808 KB
testcase_36 AC 869 ms
142,344 KB
testcase_37 AC 655 ms
124,836 KB
testcase_38 AC 467 ms
109,556 KB
testcase_39 AC 350 ms
120,832 KB
testcase_40 AC 447 ms
134,528 KB
testcase_41 AC 171 ms
87,424 KB
testcase_42 AC 109 ms
77,568 KB
testcase_43 AC 42 ms
52,224 KB
testcase_44 AC 42 ms
52,224 KB
testcase_45 AC 42 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")

#######################################################################

inf = -10**18
class SegmentTree:
    # 初期化処理
    # f : SegmentTreeにのせるモノイド
    # default : fに対する単位元
    def __init__(self, size, f=lambda x,y : max(x,y), default=inf):
        self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする
        self.default = default
        self.dat = [default]*(self.size*2) # 要素を単位元で初期化
        self.f = f
 
    def update(self, i, x):
        i += self.size
        self.dat[i] = self.f(self.dat[i],x)
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])
 
    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1
 
            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res
 
    def query2(self):
        s = 1
        #print(self.size)
        while s<self.size:
            #print(s)
            if self.dat[s*2]>self.dat[s*2+1]:
                s = s*2
            else:
                s = s*2+1
        return s-self.size

N = ni()
AB  = []
s = set([0])
for i in range(N):
    t,x,v = na()
    AB.append((x+t,t-x,v,i))
    s.add(t-x)
s = sorted(s)
d = {x:i for i, x in enumerate(s)}
m = len(s)
tree = SegmentTree(m)
tree.update(d[0], 0)
ans = 0
for a,b,v,i in sorted(AB):
    if a < 0:
        continue
    b = d[b]
    z = tree.query(0,b+1)
    #print(a,b,v,z)
    tree.update(b,z+v)
    ans = max(ans, z+v)
print(ans)
0