結果

問題 No.2809 Sort Query
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-04-21 20:13:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,324 ms / 2,000 ms
コード長 1,577 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 266,944 KB
最終ジャッジ日時 2024-07-12 20:58:13
合計ジャッジ時間 78,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,484 KB
testcase_01 AC 1,324 ms
259,940 KB
testcase_02 AC 1,231 ms
260,748 KB
testcase_03 AC 1,140 ms
262,776 KB
testcase_04 AC 1,137 ms
261,056 KB
testcase_05 AC 1,144 ms
260,860 KB
testcase_06 AC 991 ms
228,204 KB
testcase_07 AC 1,048 ms
227,968 KB
testcase_08 AC 994 ms
229,340 KB
testcase_09 AC 993 ms
228,200 KB
testcase_10 AC 989 ms
228,836 KB
testcase_11 AC 978 ms
247,852 KB
testcase_12 AC 943 ms
246,992 KB
testcase_13 AC 948 ms
248,404 KB
testcase_14 AC 958 ms
247,968 KB
testcase_15 AC 955 ms
249,680 KB
testcase_16 AC 957 ms
250,316 KB
testcase_17 AC 948 ms
248,116 KB
testcase_18 AC 942 ms
250,168 KB
testcase_19 AC 940 ms
247,860 KB
testcase_20 AC 968 ms
249,084 KB
testcase_21 AC 1,255 ms
262,312 KB
testcase_22 AC 1,273 ms
263,504 KB
testcase_23 AC 1,282 ms
263,724 KB
testcase_24 AC 1,304 ms
263,912 KB
testcase_25 AC 1,256 ms
262,840 KB
testcase_26 AC 1,230 ms
266,524 KB
testcase_27 AC 1,230 ms
265,268 KB
testcase_28 AC 1,223 ms
266,228 KB
testcase_29 AC 1,226 ms
266,944 KB
testcase_30 AC 1,216 ms
266,572 KB
testcase_31 AC 991 ms
244,660 KB
testcase_32 AC 997 ms
246,340 KB
testcase_33 AC 987 ms
246,252 KB
testcase_34 AC 970 ms
246,224 KB
testcase_35 AC 982 ms
244,524 KB
testcase_36 AC 982 ms
257,332 KB
testcase_37 AC 987 ms
256,604 KB
testcase_38 AC 973 ms
256,364 KB
testcase_39 AC 998 ms
256,692 KB
testcase_40 AC 994 ms
257,032 KB
testcase_41 AC 1,090 ms
215,568 KB
testcase_42 AC 1,092 ms
216,880 KB
testcase_43 AC 1,104 ms
217,636 KB
testcase_44 AC 1,082 ms
215,972 KB
testcase_45 AC 1,090 ms
215,444 KB
testcase_46 AC 1,009 ms
259,360 KB
testcase_47 AC 986 ms
258,036 KB
testcase_48 AC 981 ms
258,868 KB
testcase_49 AC 959 ms
257,604 KB
testcase_50 AC 993 ms
259,084 KB
testcase_51 AC 808 ms
258,996 KB
testcase_52 AC 663 ms
257,468 KB
testcase_53 AC 637 ms
257,600 KB
testcase_54 AC 632 ms
258,984 KB
testcase_55 AC 625 ms
258,672 KB
testcase_56 AC 914 ms
226,716 KB
testcase_57 AC 785 ms
197,928 KB
testcase_58 AC 725 ms
195,116 KB
testcase_59 AC 839 ms
194,076 KB
testcase_60 AC 734 ms
184,560 KB
testcase_61 AC 958 ms
248,228 KB
testcase_62 AC 778 ms
195,512 KB
testcase_63 AC 929 ms
207,912 KB
testcase_64 AC 1,141 ms
263,528 KB
testcase_65 AC 655 ms
177,488 KB
testcase_66 AC 43 ms
55,236 KB
testcase_67 AC 43 ms
54,992 KB
testcase_68 AC 41 ms
54,456 KB
testcase_69 AC 42 ms
55,012 KB
testcase_70 AC 42 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from array import array
import sys
input=sys.stdin.readline

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,i.split())) for i in sys.stdin.readlines()]
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))
change=[-1]*N
chq=deque()
changed=set()
for i in range(N):
    A[i]=ser[A[i]]
    change[i]=A[i]
    changed.add(i)
a.add(0,N)
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