結果

問題 No.1826 Fruits Collecting
ユーザー customaddonecustomaddone
提出日時 2022-01-28 23:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,188 ms / 2,000 ms
コード長 2,881 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 180,432 KB
最終ジャッジ日時 2024-06-09 17:16:39
合計ジャッジ時間 24,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
77,168 KB
testcase_01 AC 104 ms
78,336 KB
testcase_02 AC 103 ms
78,336 KB
testcase_03 AC 108 ms
78,848 KB
testcase_04 AC 81 ms
77,404 KB
testcase_05 AC 511 ms
123,820 KB
testcase_06 AC 817 ms
156,652 KB
testcase_07 AC 569 ms
128,400 KB
testcase_08 AC 161 ms
82,688 KB
testcase_09 AC 782 ms
144,692 KB
testcase_10 AC 550 ms
123,536 KB
testcase_11 AC 527 ms
119,480 KB
testcase_12 AC 270 ms
94,824 KB
testcase_13 AC 189 ms
86,272 KB
testcase_14 AC 238 ms
93,084 KB
testcase_15 AC 1,150 ms
179,452 KB
testcase_16 AC 1,130 ms
179,692 KB
testcase_17 AC 1,162 ms
179,904 KB
testcase_18 AC 1,169 ms
179,504 KB
testcase_19 AC 1,179 ms
180,432 KB
testcase_20 AC 1,172 ms
179,932 KB
testcase_21 AC 1,166 ms
179,892 KB
testcase_22 AC 1,154 ms
180,180 KB
testcase_23 AC 1,166 ms
179,292 KB
testcase_24 AC 1,188 ms
179,964 KB
testcase_25 AC 48 ms
61,696 KB
testcase_26 AC 47 ms
61,440 KB
testcase_27 AC 48 ms
61,824 KB
testcase_28 AC 47 ms
62,080 KB
testcase_29 AC 48 ms
61,824 KB
testcase_30 AC 295 ms
104,064 KB
testcase_31 AC 489 ms
120,012 KB
testcase_32 AC 287 ms
103,148 KB
testcase_33 AC 796 ms
160,052 KB
testcase_34 AC 704 ms
140,160 KB
testcase_35 AC 225 ms
94,720 KB
testcase_36 AC 789 ms
166,972 KB
testcase_37 AC 466 ms
144,128 KB
testcase_38 AC 358 ms
125,616 KB
testcase_39 AC 334 ms
122,688 KB
testcase_40 AC 409 ms
142,692 KB
testcase_41 AC 163 ms
89,996 KB
testcase_42 AC 113 ms
79,304 KB
testcase_43 AC 48 ms
62,080 KB
testcase_44 AC 48 ms
61,952 KB
testcase_45 AC 48 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
sys.setrecursionlimit(10000000)
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

# ここの設定を変えて使う
#####segfunc#####
def segfunc(x, y):
    return max(x, y)
#################

#####ide_ele#####
ide_ele = -inf
#################

class SegTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

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

"""
パリティ関係ない とどまれる
max移動するかポイントに移動するか
というかポイントからポイントへの移動方法は限られる

圧縮セグ木か
離れていく方向で見る 右側を見るときと左側を見る時


"""

N = getN()
F = [[0, 0, 0]]
code = set([-inf, 0, inf])
for _ in range(N):
    t, x, v = getNM()
    F.append([x - t, x + t, v])
    code.add(x + t)
code = sorted(list(set(code)))

F.sort(key = lambda i:i[1])
F.sort(key = lambda i:i[0], reverse = True)

d = {}
for i in range(len(code)):
    d[code[i]] = i
seg = SegTree([-inf] * len(code), segfunc, ide_ele) # セグ木立てる
for l, r, v in F:
    # スタート
    if l == r == 0:
        seg.update(d[0], 0)
        continue
    seg.update(d[r], seg.query(0, d[r] + 1) + v)
print(seg.query(0, len(code)))
0