結果

問題 No.318 学学学学学
ユーザー titiatitia
提出日時 2023-01-01 00:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 124,800 KB
最終ジャッジ日時 2024-11-26 23:55:21
合計ジャッジ時間 6,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
77,568 KB
testcase_01 AC 86 ms
82,940 KB
testcase_02 AC 89 ms
85,632 KB
testcase_03 AC 81 ms
80,896 KB
testcase_04 AC 89 ms
84,224 KB
testcase_05 AC 219 ms
124,800 KB
testcase_06 AC 200 ms
108,928 KB
testcase_07 AC 179 ms
102,784 KB
testcase_08 AC 172 ms
98,432 KB
testcase_09 AC 160 ms
95,068 KB
testcase_10 AC 128 ms
94,336 KB
testcase_11 AC 211 ms
124,672 KB
testcase_12 AC 182 ms
109,184 KB
testcase_13 AC 170 ms
102,400 KB
testcase_14 AC 156 ms
98,944 KB
testcase_15 AC 145 ms
94,976 KB
testcase_16 AC 118 ms
94,592 KB
testcase_17 AC 151 ms
116,608 KB
testcase_18 AC 151 ms
115,840 KB
testcase_19 AC 156 ms
116,096 KB
testcase_20 AC 127 ms
92,288 KB
testcase_21 AC 35 ms
52,096 KB
testcase_22 AC 35 ms
51,584 KB
testcase_23 AC 36 ms
51,584 KB
testcase_24 AC 35 ms
52,352 KB
testcase_25 AC 36 ms
52,352 KB
testcase_26 AC 34 ms
51,840 KB
testcase_27 AC 35 ms
51,584 KB
testcase_28 AC 35 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))

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

def getvalue(n,seg_el): # 一点の値を取得
    i=n+seg_el
    ANS=0
    
    ANS=max(SEG[i],ANS)
    i>>=1# 子ノードへ
    
    while i!=0:
        ANS=max(SEG[i],ANS)
        i>>=1

    return ANS

def updates(l,r,x): # 区間[l,r)のmaxを更新.
    L=l+seg_el
    R=r+seg_el

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

        if R & 1:
            R-=1
            SEG[R]=max(x,SEG[R])
        L>>=1
        R>>=1

LEFT=dict()
RIGHT=dict()

for i in range(n):
    a=A[i]
    if a in LEFT:
        LEFT[a]=min(LEFT[a],i)
    else:
        LEFT[a]=i

    if a in RIGHT:
        RIGHT[a]=max(RIGHT[a],i)
    else:
        RIGHT[a]=i

S=sorted(set(sorted(A)))

for s in S:
    l=LEFT[s]
    r=RIGHT[s]

    updates(l,r+1,s)

print(*[getvalue(i,seg_el) for i in range(n)])
0