結果

問題 No.992 最長増加部分列の数え上げ
ユーザー titiatitia
提出日時 2020-03-25 06:40:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 727 ms / 2,000 ms
コード長 1,360 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 176,528 KB
最終ジャッジ日時 2024-06-10 09:48:44
合計ジャッジ時間 20,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,380 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 343 ms
115,652 KB
testcase_05 AC 272 ms
105,644 KB
testcase_06 AC 383 ms
125,824 KB
testcase_07 AC 325 ms
111,360 KB
testcase_08 AC 203 ms
92,032 KB
testcase_09 AC 327 ms
111,232 KB
testcase_10 AC 409 ms
125,988 KB
testcase_11 AC 471 ms
131,584 KB
testcase_12 AC 163 ms
85,364 KB
testcase_13 AC 289 ms
110,592 KB
testcase_14 AC 310 ms
110,592 KB
testcase_15 AC 181 ms
86,140 KB
testcase_16 AC 722 ms
147,684 KB
testcase_17 AC 196 ms
92,368 KB
testcase_18 AC 303 ms
110,844 KB
testcase_19 AC 444 ms
131,356 KB
testcase_20 AC 678 ms
175,956 KB
testcase_21 AC 727 ms
175,748 KB
testcase_22 AC 698 ms
176,528 KB
testcase_23 AC 724 ms
176,064 KB
testcase_24 AC 718 ms
175,864 KB
testcase_25 AC 692 ms
176,292 KB
testcase_26 AC 724 ms
176,132 KB
testcase_27 AC 681 ms
176,168 KB
testcase_28 AC 722 ms
176,396 KB
testcase_29 AC 694 ms
176,252 KB
testcase_30 AC 354 ms
169,316 KB
testcase_31 AC 363 ms
169,140 KB
testcase_32 AC 370 ms
169,232 KB
testcase_33 AC 357 ms
168,752 KB
testcase_34 AC 367 ms
168,704 KB
testcase_35 AC 385 ms
167,608 KB
testcase_36 AC 389 ms
167,656 KB
testcase_37 AC 399 ms
167,420 KB
testcase_38 AC 394 ms
167,580 KB
testcase_39 AC 398 ms
167,436 KB
testcase_40 AC 359 ms
147,364 KB
testcase_41 AC 383 ms
147,180 KB
testcase_42 AC 370 ms
147,428 KB
testcase_43 AC 388 ms
147,468 KB
testcase_44 AC 358 ms
147,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
mod=10**9+7

compression_dict={a: ind+1 for ind, a in enumerate(sorted(set(A)))}
A=[compression_dict[a] for a in A]

def seg_function(x,y): # Segment treeで扱うfunction
    if x[0]==y[0]:
        return (x[0],x[1]+y[1])
    elif x[0]>y[0]:
        return x
    else:
        return y

seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
SEG=[(-1,0)]*(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,0)

    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(0,(0,1),seg_el)

for a in A:

    y=getvalues(a,a+1)
    z=getvalues(0,a)

    #print(a,x,y)

    if z[0]<y[0]:
        update(a,(y[0],z[1]+y[1]),seg_el)
    else:
        update(a,(z[0]+1,z[1]),seg_el)

    #for i in range(7):
    #    print(getvalues(i,i+1),end=" ")
    #print()
    
print(getvalues(0,N+1)[1]%mod)
0