結果

問題 No.877 Range ReLU Query
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-25 15:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,080 ms / 2,000 ms
コード長 1,782 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,520 KB
最終ジャッジ日時 2024-11-08 10:43:55
合計ジャッジ時間 12,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 88 ms
74,112 KB
testcase_02 AC 85 ms
72,704 KB
testcase_03 AC 101 ms
76,416 KB
testcase_04 AC 52 ms
60,288 KB
testcase_05 AC 71 ms
67,328 KB
testcase_06 AC 78 ms
69,632 KB
testcase_07 AC 69 ms
66,560 KB
testcase_08 AC 99 ms
76,544 KB
testcase_09 AC 54 ms
60,288 KB
testcase_10 AC 85 ms
72,192 KB
testcase_11 AC 987 ms
112,156 KB
testcase_12 AC 871 ms
108,188 KB
testcase_13 AC 731 ms
101,732 KB
testcase_14 AC 777 ms
103,072 KB
testcase_15 AC 1,080 ms
113,820 KB
testcase_16 AC 1,035 ms
111,876 KB
testcase_17 AC 1,074 ms
113,036 KB
testcase_18 AC 1,021 ms
111,728 KB
testcase_19 AC 1,012 ms
113,764 KB
testcase_20 AC 1,043 ms
114,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    """ define what you want to do with 0 index, ex) size = tree_size, func = min or max, sta = default_value """
    
    def __init__(self,size,func,sta):
        self.n = size
        self.size = 1 << size.bit_length()
        self.func = func
        self.sta = sta
        self.tree = [sta]*(2*self.size)

    def build(self, list):
        """ set list and update tree"""
        for i,x in enumerate(list,self.size):
            self.tree[i] = x

        for i in range(self.size-1,0,-1):
            self.tree[i] = self.func(self.tree[i<<1],self.tree[i<<1 | 1])

    def set(self,i,x):
        i += self.size
        self.tree[i] = x
        while i > 1:
            i >>= 1
            self.tree[i] = self.func(self.tree[i<<1],self.tree[i<<1 | 1])

    
    def get(self,l,r):
        """ take the value of [l r) with func (min or max)"""
        l += self.size
        r += self.size
        res = self.sta

        while l < r:
            if l & 1:
                res = self.func(self.tree[l],res)
                l += 1
            if r & 1:
                res = self.func(self.tree[r-1],res)
            l >>= 1
            r >>= 1
        return res


n,q = map(int,input().split())
A = list(map(int,input().split()))
Q = [list(map(int,input().split())) for i in range(q)]
sA = [[a,i] for i,a in enumerate(A)]
sQ = [[Q[i][3],i] for i in range(q)]
sA.sort(reverse=True)
sQ.sort(reverse=True)
def func(x,y):
    return x+y
seg1 = SegTree(n,func,0)
seg2 = SegTree(n,func,0)
now = 0
ans = [0]*q
for x,ind in sQ:
    while now < n and sA[now][0] >= x:
        a,i = sA[now]
        seg1.set(i,a)
        seg2.set(i,1)
        now += 1
    _,l,r,_ = Q[ind]

    count = seg1.get(l-1,r)-x*seg2.get(l-1,r)
    ans[ind] = count
    
for i in ans:
    print(i)
0