結果

問題 No.1826 Fruits Collecting
ユーザー mkawa2mkawa2
提出日時 2022-01-29 12:37:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,150 ms / 2,000 ms
コード長 1,587 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 169,016 KB
最終ジャッジ日時 2024-06-10 10:31:48
合計ジャッジ時間 24,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
64,580 KB
testcase_01 AC 71 ms
76,544 KB
testcase_02 AC 75 ms
77,312 KB
testcase_03 AC 80 ms
77,056 KB
testcase_04 AC 51 ms
66,344 KB
testcase_05 AC 458 ms
115,032 KB
testcase_06 AC 723 ms
142,732 KB
testcase_07 AC 543 ms
123,240 KB
testcase_08 AC 119 ms
80,128 KB
testcase_09 AC 720 ms
142,304 KB
testcase_10 AC 487 ms
119,620 KB
testcase_11 AC 477 ms
107,092 KB
testcase_12 AC 216 ms
91,280 KB
testcase_13 AC 148 ms
82,620 KB
testcase_14 AC 196 ms
85,372 KB
testcase_15 AC 1,131 ms
168,440 KB
testcase_16 AC 1,150 ms
168,808 KB
testcase_17 AC 1,118 ms
168,796 KB
testcase_18 AC 1,104 ms
168,620 KB
testcase_19 AC 1,091 ms
168,684 KB
testcase_20 AC 1,092 ms
168,804 KB
testcase_21 AC 1,117 ms
168,580 KB
testcase_22 AC 1,112 ms
168,652 KB
testcase_23 AC 1,082 ms
169,016 KB
testcase_24 AC 1,106 ms
168,824 KB
testcase_25 AC 34 ms
53,020 KB
testcase_26 AC 35 ms
53,072 KB
testcase_27 AC 35 ms
54,180 KB
testcase_28 AC 34 ms
54,352 KB
testcase_29 AC 35 ms
52,940 KB
testcase_30 AC 288 ms
96,744 KB
testcase_31 AC 527 ms
107,832 KB
testcase_32 AC 252 ms
94,968 KB
testcase_33 AC 766 ms
143,740 KB
testcase_34 AC 620 ms
134,908 KB
testcase_35 AC 185 ms
85,932 KB
testcase_36 AC 738 ms
143,076 KB
testcase_37 AC 509 ms
123,972 KB
testcase_38 AC 363 ms
113,584 KB
testcase_39 AC 251 ms
119,464 KB
testcase_40 AC 296 ms
131,084 KB
testcase_41 AC 108 ms
86,364 KB
testcase_42 AC 69 ms
77,568 KB
testcase_43 AC 34 ms
53,604 KB
testcase_44 AC 34 ms
52,956 KB
testcase_45 AC 36 ms
53,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
# md = 10**9+7
md = 998244353

class Bit:
    def __init__(self, op, e, n):
        self.op = op
        self.e = e
        self.n = n+1
        self.table = [e() for _ in range(self.n)]

    def update(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] = self.op(self.table[i], x)
            i += i & -i

    # [0,i]
    def prod(self, i):
        i += 1
        res = self.e()
        while i > 0:
            res = self.op(res, self.table[i])
            i -= i & -i
        return res

n = II()
txv = LLI(n)

st = set()
st.add(0)
for t, x, v in txv: st.add(t-x)
enc = {a: i for i, a in enumerate(sorted(st))}

txv.sort(key=lambda x: (x[0]+x[1], x[0]-x[1]))
bit = Bit(max, lambda: -inf, n+5)
i = enc[0]
bit.update(i, 0)
for t, x, v in txv:
    if t+x < 0: continue
    i = enc[t-x]
    cur = bit.prod(i)+v
    bit.update(i, cur)

print(bit.prod(n+4))
0