結果

問題 No.1705 Mode of long array
ユーザー harurunharurun
提出日時 2021-10-02 11:00:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 3,000 ms
コード長 2,800 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 97,656 KB
最終ジャッジ日時 2024-07-23 03:50:40
合計ジャッジ時間 17,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,964 KB
testcase_01 AC 38 ms
53,292 KB
testcase_02 AC 39 ms
53,536 KB
testcase_03 AC 95 ms
77,208 KB
testcase_04 AC 87 ms
77,104 KB
testcase_05 AC 111 ms
77,108 KB
testcase_06 AC 158 ms
78,424 KB
testcase_07 AC 167 ms
77,956 KB
testcase_08 AC 163 ms
78,064 KB
testcase_09 AC 148 ms
77,948 KB
testcase_10 AC 160 ms
77,992 KB
testcase_11 AC 156 ms
78,164 KB
testcase_12 AC 160 ms
78,000 KB
testcase_13 AC 360 ms
93,556 KB
testcase_14 AC 322 ms
87,684 KB
testcase_15 AC 308 ms
81,100 KB
testcase_16 AC 354 ms
82,852 KB
testcase_17 AC 281 ms
80,756 KB
testcase_18 AC 259 ms
80,644 KB
testcase_19 AC 381 ms
85,120 KB
testcase_20 AC 303 ms
82,272 KB
testcase_21 AC 330 ms
94,084 KB
testcase_22 AC 406 ms
96,092 KB
testcase_23 AC 190 ms
77,740 KB
testcase_24 AC 186 ms
77,660 KB
testcase_25 AC 188 ms
77,840 KB
testcase_26 AC 187 ms
77,744 KB
testcase_27 AC 187 ms
77,920 KB
testcase_28 AC 185 ms
77,744 KB
testcase_29 AC 188 ms
77,772 KB
testcase_30 AC 188 ms
77,836 KB
testcase_31 AC 184 ms
77,500 KB
testcase_32 AC 186 ms
77,556 KB
testcase_33 AC 394 ms
96,652 KB
testcase_34 AC 372 ms
97,532 KB
testcase_35 AC 400 ms
97,172 KB
testcase_36 AC 367 ms
97,556 KB
testcase_37 AC 359 ms
97,404 KB
testcase_38 AC 360 ms
96,908 KB
testcase_39 AC 365 ms
96,660 KB
testcase_40 AC 361 ms
97,020 KB
testcase_41 AC 406 ms
97,656 KB
testcase_42 AC 398 ms
97,276 KB
testcase_43 AC 337 ms
97,044 KB
testcase_44 AC 367 ms
96,588 KB
testcase_45 AC 365 ms
96,988 KB
testcase_46 AC 351 ms
96,660 KB
testcase_47 AC 350 ms
96,804 KB
testcase_48 AC 344 ms
96,696 KB
testcase_49 AC 384 ms
96,728 KB
testcase_50 AC 382 ms
96,500 KB
testcase_51 AC 367 ms
96,920 KB
testcase_52 AC 364 ms
96,748 KB
testcase_53 AC 365 ms
96,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
  def __init__(self,op,e,v):
    self._op=op
    self._e=e
    
    if isinstance(v,int):
      v=[e]*v
    
    self._n=len(v)
    self._log=self.ceil2()
    self._size=1<<self._log
    self._d=[e]*(2*self._size)
    
    for i in range(self._n):
      self._d[self._size+i]=v[i]
    for i in range(self._size-1,0,-1):
      self._update(i)
    return
  
  def ceil2(self):
    x=0
    while (1<<x)<self._n:
      x+=1
    return x
    
  def set(self,p,x):
    p+=self._size
    self._d[p]=x
    for i in range(1,self._log+1):
      self._update(p>>i)
    return
    
  def get(self,p):
    return self._d[p+self._size]
    
  def prod(self,left,right):
    sml=self._e
    smr=self._e
    left+=self._size
    right+=self._size
    while left<right:
      if left&1:
        sml=self._op(sml,self._d[left])
        left+=1
      if right&1:
        right-=1
        smr=self._op(self._d[right],smr)
      left>>=1
      right>>=1
    return self._op(sml,smr)
    
  def all_prod(self):
    return self._d[1]
  
  def max_right(self,left,target):
    self.target=target
    if left==self._n:
      return self._n
    left+=self._size
    sm=self._e
    
    first=True
    while first or (left & -left)!=left:
      first=False
      while left%2==0:
        left>>=1
      if not self._f(self._op(sm,self._d[left])):
        while left<self._size:
          left*=2
          if self._f(self._op(sm,self._d[left])):
            sm=self._op(sm,self._d[left])
            left+=1
        return left-self._size
      sm=self._op(sm,self._d[left])
      left+=1
    return self._n
    
  def min_left(self,right,target):
    self.target=target
    if right==0:
      return 0
    
    right+=self._size
    sm=self._e
    
    first=True
    while first or (right&-right)!=right:
      first=False
      right-=1
      while right>1 and right%2:
        right>>=1
      if not self._f(self._op(self._d[right],sm)):
        while right<self._size:
          right=2*right+1
          if self._f(self._op(self._d[right],sm)):
            sm=self._op(self._d[right],sm)
            right-=1
        return right+1-self._size
      sm=self._op(self._d[right],sm)
    return 0
  
  def _update(self,k):
    self._d[k]=self._op(self._d[2*k],self._d[2*k+1])
    return

  def _f(self,u):
    return u<self.target

def op(a,b):
  if a[0]>b[0]:
    return a
  else:
    return b

def main():
  N,M=map(int,input().split())
  A=list(map(int,input().split()))
  for i in range(M):
    A[i]=[A[i],i+1]
  seg=SegTree(op,[-1,-1],A)
  Q=int(input())
  for i in range(Q):
    T,X,Y=map(int,input().split())
    if T==1:
      d=seg.get(X-1)
      seg.set(X-1,[d[0]+Y,d[1]])
    elif T==2:
      d=seg.get(X-1)
      seg.set(X-1,[d[0]-Y,d[1]])
    else:
      print(seg.all_prod()[1])
  return

main()
0