結果

問題 No.878 Range High-Element Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 19:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 113,432 KB
最終ジャッジ日時 2024-09-09 19:00:10
合計ジャッジ時間 7,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,236 KB
testcase_01 AC 62 ms
67,520 KB
testcase_02 AC 64 ms
68,736 KB
testcase_03 AC 51 ms
62,880 KB
testcase_04 AC 64 ms
69,260 KB
testcase_05 AC 69 ms
71,492 KB
testcase_06 AC 48 ms
61,656 KB
testcase_07 AC 46 ms
59,704 KB
testcase_08 AC 71 ms
71,764 KB
testcase_09 AC 69 ms
71,756 KB
testcase_10 AC 54 ms
63,952 KB
testcase_11 AC 759 ms
108,092 KB
testcase_12 AC 457 ms
100,800 KB
testcase_13 AC 573 ms
102,872 KB
testcase_14 AC 502 ms
95,952 KB
testcase_15 AC 480 ms
99,516 KB
testcase_16 AC 705 ms
109,968 KB
testcase_17 AC 748 ms
113,432 KB
testcase_18 AC 761 ms
113,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))+[10**10]

e=[]
s=[-1]
for i in range(n):
  while a[s[-1]]<a[i]:
    s.pop()
  e+=[(i,0,s[-1]+1,i)]
  s+=[i]
for i in range(q):
  t,l,r=map(int,input().split())
  l-=1
  r-=1
  e+=[(r,1,l,i)]
e.sort()

B=317
st1=[0]*B*B
st2=[0]*B

ans=[0]*q

for _,f,p1,p2 in e:
  if f==0:
    l,r=p1,p2
    st1[l]+=1
    st2[l//B]+=1
    st1[r+1]-=1
    st2[(r+1)//B]-=1
  else:
    r,i=p1,p2
    l=0
    a=0
    yl=l//B
    yr=r//B
    if yl==yr:
      a+=sum(st1[l:r+1])
    else:
      a+=sum(st1[l:yl*B+B])
      a+=sum(st1[yr*B:r+1])
      a+=sum(st2[yl+1:yr])
    ans[i]=a
print(*ans,sep="\n")
0