結果

問題 No.2809 Sort Query
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-04-21 18:41:00
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,546 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 262,912 KB
最終ジャッジ日時 2024-07-12 20:56:26
合計ジャッジ時間 60,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,604 KB
testcase_01 AC 863 ms
224,884 KB
testcase_02 AC 985 ms
223,628 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 697 ms
176,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 726 ms
176,412 KB
testcase_10 AC 678 ms
177,668 KB
testcase_11 AC 669 ms
196,872 KB
testcase_12 AC 654 ms
196,824 KB
testcase_13 AC 691 ms
197,980 KB
testcase_14 AC 668 ms
196,864 KB
testcase_15 AC 655 ms
198,648 KB
testcase_16 AC 655 ms
198,660 KB
testcase_17 AC 668 ms
198,156 KB
testcase_18 AC 665 ms
198,260 KB
testcase_19 AC 669 ms
197,724 KB
testcase_20 AC 660 ms
197,804 KB
testcase_21 AC 941 ms
262,808 KB
testcase_22 AC 946 ms
262,820 KB
testcase_23 AC 941 ms
262,912 KB
testcase_24 AC 955 ms
262,360 KB
testcase_25 AC 933 ms
262,432 KB
testcase_26 AC 923 ms
259,812 KB
testcase_27 AC 932 ms
259,104 KB
testcase_28 AC 891 ms
257,912 KB
testcase_29 AC 920 ms
258,812 KB
testcase_30 AC 922 ms
257,756 KB
testcase_31 AC 663 ms
196,648 KB
testcase_32 AC 693 ms
198,692 KB
testcase_33 AC 660 ms
196,796 KB
testcase_34 AC 665 ms
197,880 KB
testcase_35 AC 676 ms
198,332 KB
testcase_36 AC 655 ms
212,584 KB
testcase_37 AC 667 ms
213,004 KB
testcase_38 AC 657 ms
212,520 KB
testcase_39 AC 658 ms
212,476 KB
testcase_40 AC 660 ms
212,112 KB
testcase_41 AC 805 ms
209,520 KB
testcase_42 AC 814 ms
210,528 KB
testcase_43 AC 816 ms
210,148 KB
testcase_44 AC 816 ms
210,228 KB
testcase_45 AC 839 ms
209,876 KB
testcase_46 AC 736 ms
208,048 KB
testcase_47 AC 712 ms
207,700 KB
testcase_48 AC 717 ms
207,640 KB
testcase_49 AC 727 ms
208,524 KB
testcase_50 AC 715 ms
206,700 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 570 ms
182,712 KB
testcase_61 AC 714 ms
201,608 KB
testcase_62 AC 620 ms
173,860 KB
testcase_63 WA -
testcase_64 AC 852 ms
221,820 KB
testcase_65 AC 467 ms
147,732 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 35 ms
55,536 KB
testcase_69 WA -
testcase_70 AC 37 ms
55,384 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))
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