結果

問題 No.2809 Sort Query
ユーザー highlighterhighlighter
提出日時 2024-04-21 18:34:48
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,503 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 230,132 KB
最終ジャッジ日時 2024-07-12 20:55:15
合計ジャッジ時間 69,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 979 ms
195,116 KB
testcase_02 AC 983 ms
188,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 757 ms
142,252 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 923 ms
142,160 KB
testcase_10 AC 792 ms
142,248 KB
testcase_11 AC 855 ms
159,036 KB
testcase_12 AC 968 ms
163,944 KB
testcase_13 AC 896 ms
158,744 KB
testcase_14 AC 773 ms
160,296 KB
testcase_15 AC 770 ms
160,440 KB
testcase_16 AC 779 ms
161,540 KB
testcase_17 AC 764 ms
158,908 KB
testcase_18 AC 795 ms
161,408 KB
testcase_19 AC 782 ms
160,980 KB
testcase_20 AC 855 ms
157,696 KB
testcase_21 AC 1,094 ms
229,236 KB
testcase_22 AC 1,100 ms
222,848 KB
testcase_23 AC 1,058 ms
229,620 KB
testcase_24 AC 1,154 ms
230,132 KB
testcase_25 AC 1,036 ms
222,836 KB
testcase_26 AC 1,036 ms
228,460 KB
testcase_27 AC 1,051 ms
228,592 KB
testcase_28 AC 1,076 ms
228,204 KB
testcase_29 AC 1,062 ms
228,336 KB
testcase_30 AC 1,030 ms
228,208 KB
testcase_31 AC 746 ms
166,528 KB
testcase_32 AC 818 ms
167,544 KB
testcase_33 AC 761 ms
168,708 KB
testcase_34 AC 778 ms
165,628 KB
testcase_35 AC 825 ms
168,824 KB
testcase_36 AC 920 ms
179,120 KB
testcase_37 AC 800 ms
178,856 KB
testcase_38 AC 779 ms
178,608 KB
testcase_39 AC 772 ms
178,480 KB
testcase_40 AC 787 ms
178,344 KB
testcase_41 AC 920 ms
184,740 KB
testcase_42 AC 944 ms
185,136 KB
testcase_43 AC 921 ms
184,864 KB
testcase_44 AC 937 ms
184,612 KB
testcase_45 AC 948 ms
184,484 KB
testcase_46 AC 806 ms
182,312 KB
testcase_47 AC 803 ms
182,428 KB
testcase_48 AC 808 ms
182,304 KB
testcase_49 AC 809 ms
182,312 KB
testcase_50 AC 828 ms
181,928 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 609 ms
169,540 KB
testcase_61 AC 800 ms
163,976 KB
testcase_62 AC 681 ms
150,300 KB
testcase_63 WA -
testcase_64 AC 928 ms
183,000 KB
testcase_65 AC 539 ms
153,716 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 45 ms
54,528 KB
testcase_69 WA -
testcase_70 AC 42 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from array import array

class FenwickTree:
    def __init__(self,size):
        self.tree=array("i",[0]*(size+1))
        self.size=size
        self.start=size.bit_length()-1
    def add(self,pos,val):
        pos+=1
        while pos<=self.size:
            self.tree[pos]+=val
            pos+=pos&-pos
    def bisect(self,pos):
        now=0
        val=0
        for i in range(self.start,-1,-1):
            if now+(1<<i)<=self.size and val+self.tree[now+(1<<i)]<=pos:
                now+=1<<i
                val+=self.tree[now]
        return now

N,Q=map(int,input().split())
A=list(map(int,input().split()))
query=[tuple(map(int,input().split())) for i in range(Q)]
press=A[:]
for i in range(Q):
    if query[i][0]==1:
        press.append(query[i][2])
press.sort()
ser={}
for i in range(len(press)):
    ser[press[i]]=i
a=FenwickTree(len(press))
for i in range(N):
    A[i]=ser[A[i]]
    a.add(A[i],1)
change=[-1]*N
chq=deque()
changed=set()
for i in range(Q):
    t,*q=query[i]
    if t==1:
        k,x=q
        x=ser[x]
        change[k-1]=x
        changed.add(k-1)
    if t==2:
        for j in changed:
            chq.append((a.bisect(j),change[j]))
            change[j]=-1;
        changed.clear()
        while chq:
            a.add(chq[-1][0],-1)
            a.add(chq[-1][1],1)
            chq.pop()
    if t==3:
        k=q[0]
        if change[k-1]==-1:
            print(press[a.bisect(k-1)])
        else:
            print(press[change[k-1]])
0