結果

問題 No.877 Range ReLU Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 18:12:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 793 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 99,940 KB
最終ジャッジ日時 2024-09-09 18:12:41
合計ジャッジ時間 15,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
72,216 KB
testcase_01 AC 95 ms
79,412 KB
testcase_02 AC 94 ms
79,144 KB
testcase_03 AC 70 ms
75,048 KB
testcase_04 AC 53 ms
68,076 KB
testcase_05 AC 66 ms
74,880 KB
testcase_06 AC 68 ms
74,168 KB
testcase_07 AC 66 ms
73,588 KB
testcase_08 AC 101 ms
79,204 KB
testcase_09 AC 55 ms
68,236 KB
testcase_10 AC 69 ms
74,544 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,663 ms
86,832 KB
testcase_14 AC 1,744 ms
85,664 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B=317
st1=[0]*B*B
st2=[[] for i in range(B)]
st3=[[] for i in range(B)]

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

from bisect import bisect_left

for _ in range(q):
  t,*que,=map(int,input().split())
  if t==1:
    l,r,x=que
    l-=1
    r-=1
    a=0
    yl=l//B
    yr=r//B
    if yl==yr:
      for i in range(l,r+1):
        a+=max(st1[i]-x,0)
    else:
      for i in range(l,yl*B+B):
        a+=max(st1[i]-x,0)
      for i in range(yr*B,r+1):
        a+=max(st1[i]-x,0)
      for i in range(yl+1,yr):
        p=bisect_left(st2[i],x)
        a+=st3[i][B-1]-st3[i][p-1]-x*(B-p)
    print(a)
0