結果

問題 No.876 Range Compress Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 18:00:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 91,084 KB
最終ジャッジ日時 2024-09-09 18:00:44
合計ジャッジ時間 5,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,960 KB
testcase_01 AC 54 ms
66,920 KB
testcase_02 AC 39 ms
54,860 KB
testcase_03 AC 60 ms
67,876 KB
testcase_04 AC 46 ms
61,392 KB
testcase_05 AC 41 ms
55,160 KB
testcase_06 AC 76 ms
70,212 KB
testcase_07 AC 54 ms
66,524 KB
testcase_08 AC 54 ms
65,648 KB
testcase_09 AC 53 ms
65,296 KB
testcase_10 AC 52 ms
64,300 KB
testcase_11 AC 438 ms
87,372 KB
testcase_12 AC 363 ms
85,880 KB
testcase_13 AC 352 ms
87,464 KB
testcase_14 AC 428 ms
87,140 KB
testcase_15 AC 309 ms
88,996 KB
testcase_16 AC 380 ms
91,060 KB
testcase_17 AC 407 ms
91,084 KB
testcase_18 AC 408 ms
90,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))

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

for i in range(n-1):
  st1[i]=a[i+1]-a[i]
for i in range(B):
  st2[i]=st1[i*B:i*B+B].count(0)

for _ in range(q):
  t,*que,=map(int,input().split())
  if t==1:
    l,r,x=que
    l-=1
    r-=1
    if l-1>=0:
      st1[l-1]+=x
      y=(l-1)//B
      st2[y]=st1[y*B:y*B+B].count(0)
    st1[r]-=x
    y=r//B
    st2[y]=st1[y*B:y*B+B].count(0)
  if t==2:
    l,r=que
    l-=1
    r-=1
    r-=1
    a=0
    yl=l//B
    yr=r//B
    if yl==yr:
      a+=st1[l:r+1].count(0)
    else:
      a+=st1[l:yl*B+B].count(0)
      a+=st1[yr*B:r+1].count(0)
      a+=sum(st2[yl+1:yr])
    print(r-l+1-a+1)
0