結果

問題 No.992 最長増加部分列の数え上げ
ユーザー titiatitia
提出日時 2020-03-25 06:28:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,388 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 176,796 KB
最終ジャッジ日時 2024-06-10 09:48:02
合計ジャッジ時間 25,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 WA -
testcase_04 AC 385 ms
115,584 KB
testcase_05 AC 296 ms
105,600 KB
testcase_06 AC 415 ms
125,952 KB
testcase_07 AC 351 ms
111,104 KB
testcase_08 AC 223 ms
92,288 KB
testcase_09 AC 370 ms
111,360 KB
testcase_10 AC 435 ms
125,824 KB
testcase_11 AC 507 ms
131,584 KB
testcase_12 AC 176 ms
85,544 KB
testcase_13 AC 311 ms
110,720 KB
testcase_14 AC 342 ms
110,848 KB
testcase_15 AC 203 ms
86,288 KB
testcase_16 AC 827 ms
148,304 KB
testcase_17 AC 223 ms
92,160 KB
testcase_18 AC 334 ms
110,848 KB
testcase_19 AC 493 ms
131,328 KB
testcase_20 AC 818 ms
175,824 KB
testcase_21 WA -
testcase_22 AC 869 ms
176,284 KB
testcase_23 AC 823 ms
176,260 KB
testcase_24 AC 803 ms
175,768 KB
testcase_25 AC 896 ms
176,212 KB
testcase_26 AC 819 ms
175,568 KB
testcase_27 WA -
testcase_28 AC 862 ms
176,272 KB
testcase_29 AC 824 ms
176,644 KB
testcase_30 AC 445 ms
169,340 KB
testcase_31 AC 423 ms
168,748 KB
testcase_32 AC 445 ms
169,400 KB
testcase_33 AC 485 ms
168,452 KB
testcase_34 AC 467 ms
169,264 KB
testcase_35 AC 455 ms
168,044 KB
testcase_36 AC 462 ms
167,532 KB
testcase_37 AC 455 ms
167,812 KB
testcase_38 AC 485 ms
167,424 KB
testcase_39 AC 454 ms
168,048 KB
testcase_40 AC 433 ms
147,500 KB
testcase_41 AC 415 ms
147,556 KB
testcase_42 AC 434 ms
147,556 KB
testcase_43 AC 450 ms
147,420 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
    x=getvalues(0,a+1)
    y=getvalues(a,a+1)
    z=getvalues(0,a)

    #print(a,x,y)

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

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