結果

問題 No.1826 Fruits Collecting
ユーザー ygd.ygd.
提出日時 2022-01-29 12:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,392 ms / 2,000 ms
コード長 2,775 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 267,552 KB
最終ジャッジ日時 2024-06-10 10:35:47
合計ジャッジ時間 28,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
66,012 KB
testcase_01 AC 73 ms
75,116 KB
testcase_02 AC 75 ms
75,044 KB
testcase_03 AC 85 ms
77,044 KB
testcase_04 AC 59 ms
67,504 KB
testcase_05 AC 542 ms
149,344 KB
testcase_06 AC 895 ms
194,876 KB
testcase_07 AC 636 ms
196,376 KB
testcase_08 AC 119 ms
82,080 KB
testcase_09 AC 881 ms
243,048 KB
testcase_10 AC 578 ms
149,824 KB
testcase_11 AC 584 ms
183,756 KB
testcase_12 AC 254 ms
108,460 KB
testcase_13 AC 157 ms
91,056 KB
testcase_14 AC 225 ms
102,756 KB
testcase_15 AC 1,345 ms
267,388 KB
testcase_16 AC 1,338 ms
267,132 KB
testcase_17 AC 1,322 ms
267,492 KB
testcase_18 AC 1,359 ms
267,208 KB
testcase_19 AC 1,298 ms
267,236 KB
testcase_20 AC 1,321 ms
267,204 KB
testcase_21 AC 1,337 ms
267,432 KB
testcase_22 AC 1,392 ms
267,304 KB
testcase_23 AC 1,321 ms
267,408 KB
testcase_24 AC 1,367 ms
267,552 KB
testcase_25 AC 40 ms
53,204 KB
testcase_26 AC 40 ms
53,392 KB
testcase_27 AC 39 ms
52,864 KB
testcase_28 AC 40 ms
54,244 KB
testcase_29 AC 39 ms
53,088 KB
testcase_30 AC 325 ms
122,972 KB
testcase_31 AC 627 ms
154,960 KB
testcase_32 AC 299 ms
108,796 KB
testcase_33 AC 954 ms
226,604 KB
testcase_34 AC 810 ms
174,876 KB
testcase_35 AC 222 ms
106,060 KB
testcase_36 AC 929 ms
203,876 KB
testcase_37 AC 679 ms
176,048 KB
testcase_38 AC 495 ms
170,820 KB
testcase_39 AC 326 ms
160,864 KB
testcase_40 AC 424 ms
187,428 KB
testcase_41 AC 148 ms
97,296 KB
testcase_42 AC 89 ms
77,456 KB
testcase_43 AC 38 ms
53,084 KB
testcase_44 AC 39 ms
53,552 KB
testcase_45 AC 39 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v):
        self.update(i, self[i] + v)

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)


def compress(S):
    S = set(S); S = list(S)
    S.sort()
    dic_comp_ori = {}
    dic_ori_comp = {}
    for i,a in enumerate(S):
        dic_ori_comp[a] = i
        dic_comp_ori[i] = a
    return dic_comp_ori, dic_ori_comp 

def main():
    N = int(input()); INF = pow(10,18)
    Z = [(0,0,0)]; A = [0]; B = [0] #スタート地点
    for i in range(N):
        t,x,v = map(int,input().split())
        a = t+x
        b = t-x
        Z.append((a,b,v))
        A.append(a)
        B.append(b)
    Z.sort(key = lambda x: (x[0],x[1]))
    #print(Z)
    dica_comp_ori, dica_ori_comp = compress(A)
    dicb_comp_ori, dicb_ori_comp = compress(B)
    dp = SegmentTree([-INF]*(N+1), max, -INF)
    Flag = True
    for a,b,v in Z:
        if Flag:
            if v == 0:
                b0 = dicb_ori_comp[0]
                dp.update(b0,0) #スタート地点に来たので初期化
                Flag = False
            continue
        bi = dicb_ori_comp[b]
        nv = dp.sum(0,bi+1) + v
        #print(nv)
        dp.update(bi,nv)
    ans = dp.sum(0,N+1)
    print(ans)



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