結果

問題 No.992 最長増加部分列の数え上げ
ユーザー convexineqconvexineq
提出日時 2020-02-14 22:40:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,001 ms / 2,000 ms
コード長 1,739 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 106,336 KB
最終ジャッジ日時 2024-10-06 13:00:56
合計ジャッジ時間 25,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,300 KB
testcase_01 AC 37 ms
53,008 KB
testcase_02 AC 38 ms
52,284 KB
testcase_03 AC 39 ms
53,016 KB
testcase_04 AC 380 ms
91,956 KB
testcase_05 AC 303 ms
88,004 KB
testcase_06 AC 470 ms
96,656 KB
testcase_07 AC 341 ms
89,784 KB
testcase_08 AC 217 ms
82,828 KB
testcase_09 AC 349 ms
90,216 KB
testcase_10 AC 465 ms
96,636 KB
testcase_11 AC 573 ms
102,084 KB
testcase_12 AC 162 ms
80,104 KB
testcase_13 AC 335 ms
90,004 KB
testcase_14 AC 350 ms
89,884 KB
testcase_15 AC 173 ms
80,352 KB
testcase_16 AC 853 ms
104,524 KB
testcase_17 AC 211 ms
82,820 KB
testcase_18 AC 329 ms
89,460 KB
testcase_19 AC 562 ms
101,864 KB
testcase_20 AC 981 ms
105,372 KB
testcase_21 AC 992 ms
105,432 KB
testcase_22 AC 967 ms
105,492 KB
testcase_23 AC 972 ms
105,632 KB
testcase_24 AC 941 ms
105,760 KB
testcase_25 AC 978 ms
105,356 KB
testcase_26 AC 943 ms
105,424 KB
testcase_27 AC 946 ms
105,848 KB
testcase_28 AC 946 ms
105,448 KB
testcase_29 AC 1,001 ms
105,644 KB
testcase_30 AC 511 ms
106,288 KB
testcase_31 AC 521 ms
105,784 KB
testcase_32 AC 515 ms
105,796 KB
testcase_33 AC 507 ms
106,280 KB
testcase_34 AC 513 ms
105,796 KB
testcase_35 AC 370 ms
105,828 KB
testcase_36 AC 368 ms
106,160 KB
testcase_37 AC 369 ms
105,920 KB
testcase_38 AC 371 ms
106,092 KB
testcase_39 AC 370 ms
105,804 KB
testcase_40 AC 535 ms
106,036 KB
testcase_41 AC 537 ms
106,240 KB
testcase_42 AC 548 ms
106,288 KB
testcase_43 AC 556 ms
106,000 KB
testcase_44 AC 550 ms
106,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segment_tree:
    def __init__(self, N, operator_M, e_M):
        self.op_M = operator_M
        self.e_M = e_M
        
        self.N0 = 1<<(N-1).bit_length()
        self.dat = [self.e_M]*(2*self.N0)
    
    # 長さNの配列 initial で初期化
    def build(self, initial):
        self.dat[self.N0:self.N0+len(initial)] = initial[:]
        for k in range(self.N0-1,0,-1):
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])

    # a_k の値を x に更新
    def update(self,k,x):
        k += self.N0
        self.dat[k] = x
        k //= 2
        while k:
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])
            k //= 2

    # 区間[L,R]をopでまとめる
    def query(self,L,R):
        L += self.N0; R += self.N0 + 1 
        sl = sr = self.e_M
        while L < R:
            if R & 1:
                R -= 1
                sr = self.op_M(self.dat[R],sr)
            if L & 1:
                sl = self.op_M(sl,self.dat[L])
                L += 1
            L >>= 1; R >>= 1
        return self.op_M(sl,sr)

    def get(self, k): #k番目の値を取得。query[k,k]と同じ
        return self.dat[k+self.N0]


# coding: utf-8
# Your code here!

import sys
readline = sys.stdin.readline
read = sys.stdin.read


# (length, num)
def op(X,Y):
    d,n = X
    e,m = Y
    if d < e:  return Y
    if d > e:  return X
    if d == e: return (d,(n+m)%1000000007)

n,*a = [int(i) for i in read().split()]
sa = sorted((ai,-i) for i,ai in enumerate(a))

seg = segment_tree(n, op, (0,0))

for v,i in sa:
    d,num = seg.query(0,-i)
    if d != 0:
        seg.update(-i,(d+1,num))
    else:
        seg.update(-i,(1,1))
    
    
#print(seg.dat)
print(seg.dat[1][1])
    







0