結果

問題 No.1826 Fruits Collecting
ユーザー titiatitia
提出日時 2022-01-29 01:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,199 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 269,200 KB
最終ジャッジ日時 2024-06-09 19:39:12
合計ジャッジ時間 24,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
68,296 KB
testcase_01 AC 70 ms
77,476 KB
testcase_02 AC 71 ms
77,512 KB
testcase_03 AC 72 ms
77,452 KB
testcase_04 AC 52 ms
68,080 KB
testcase_05 AC 452 ms
134,468 KB
testcase_06 AC 716 ms
220,908 KB
testcase_07 AC 515 ms
183,260 KB
testcase_08 AC 107 ms
84,876 KB
testcase_09 AC 705 ms
216,568 KB
testcase_10 AC 486 ms
174,416 KB
testcase_11 AC 464 ms
167,128 KB
testcase_12 AC 220 ms
111,512 KB
testcase_13 AC 138 ms
90,412 KB
testcase_14 AC 187 ms
104,112 KB
testcase_15 AC 1,157 ms
268,600 KB
testcase_16 AC 1,199 ms
269,200 KB
testcase_17 AC 1,129 ms
268,568 KB
testcase_18 AC 1,104 ms
268,552 KB
testcase_19 AC 1,106 ms
268,748 KB
testcase_20 AC 1,099 ms
268,932 KB
testcase_21 AC 1,094 ms
268,452 KB
testcase_22 AC 1,086 ms
268,308 KB
testcase_23 AC 1,123 ms
268,552 KB
testcase_24 AC 1,117 ms
268,840 KB
testcase_25 AC 34 ms
52,740 KB
testcase_26 AC 36 ms
53,020 KB
testcase_27 AC 33 ms
53,272 KB
testcase_28 AC 33 ms
53,404 KB
testcase_29 AC 33 ms
54,424 KB
testcase_30 AC 273 ms
115,600 KB
testcase_31 AC 505 ms
172,772 KB
testcase_32 AC 258 ms
108,888 KB
testcase_33 AC 787 ms
182,972 KB
testcase_34 AC 669 ms
180,816 KB
testcase_35 AC 189 ms
104,328 KB
testcase_36 AC 762 ms
202,300 KB
testcase_37 AC 528 ms
153,104 KB
testcase_38 AC 380 ms
132,448 KB
testcase_39 AC 322 ms
173,584 KB
testcase_40 AC 433 ms
200,820 KB
testcase_41 AC 146 ms
100,700 KB
testcase_42 AC 88 ms
78,104 KB
testcase_43 AC 34 ms
53,500 KB
testcase_44 AC 33 ms
53,384 KB
testcase_45 AC 34 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

N=int(input())

B=[list(map(int,input().split())) for i in range(N)]
B2=[[0,0,0]]

for t,x,v in B:
    B2.append([t+x,t-x,v])

#print(B2)



SS=[0]
for x,y,v in B2:
    SS.append(x)
    SS.append(y)

SS=sorted(set(SS))

D={SS[i]:i for i in range(len(SS))}

for i in range(N+1):
    B2[i][0]=D[B2[i][0]]
    B2[i][1]=D[B2[i][1]]

#print(B2)

B2.sort()

def seg_function(x,y): # Segment treeで扱うfunction
    return max(x,y)

seg_el=1<<((len(SS)+5).bit_length()) # Segment treeの台の要素数
SEG=[-1<<60]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=-1<<60

    while L<R:
        if L & 1:
            ANS=seg_function(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

update(D[0],0,seg_el)

for x,y,v in B2:
    if x<D[0]:
        continue
    A=getvalues(0,y+1)
    #print(x,y,v,A)
    update(y,A+v,seg_el)

print(SEG[1])
    
0