結果

問題 No.876 Range Compress Query
ユーザー pynomipynomi
提出日時 2019-09-07 18:12:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,120 ms / 2,000 ms
コード長 1,443 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,264 KB
最終ジャッジ日時 2024-06-27 00:12:12
合計ジャッジ時間 10,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,800 KB
testcase_01 AC 91 ms
76,532 KB
testcase_02 AC 57 ms
64,000 KB
testcase_03 AC 96 ms
76,680 KB
testcase_04 AC 65 ms
67,072 KB
testcase_05 AC 65 ms
69,248 KB
testcase_06 AC 92 ms
76,288 KB
testcase_07 AC 91 ms
76,544 KB
testcase_08 AC 89 ms
76,368 KB
testcase_09 AC 90 ms
76,820 KB
testcase_10 AC 89 ms
76,592 KB
testcase_11 AC 1,002 ms
105,516 KB
testcase_12 AC 843 ms
101,356 KB
testcase_13 AC 877 ms
101,164 KB
testcase_14 AC 990 ms
105,480 KB
testcase_15 AC 782 ms
97,408 KB
testcase_16 AC 988 ms
104,776 KB
testcase_17 AC 1,007 ms
104,588 KB
testcase_18 AC 1,120 ms
106,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, N, init, operation):
        self.N = 2**(N-1).bit_length()
        self.data = [init] * (2*self.N)
        self.init = init
        self.operation = operation

    def update(self, k, x):
        k += self.N-1
        self.data[k] = x
        while k >= 0:
            k = (k - 1) // 2
            self.data[k] = self.operation((self.data[2*k+1], self.data[2*k+2]))
    
    def query(self, l, r):
        L = l + self.N
        R = r + self.N
        s = self.init
        while L < R:
            if R & 1:
                R -= 1
                s = self.operation((s, self.data[R-1]))
            if L & 1:
                s = self.operation((s, self.data[L-1]))
                L += 1
            L >>= 1; R >>= 1
        return s

N, Q = map(int,input().split())
A = list(map(int,input().split()))
query = [list(map(int,input().split())) for _ in range(Q)]

B = [A[i+1] - A[i] for i in range(N-1)]
N = N-1

st_sum = SegmentTree(N, 0, sum)

for i, b in enumerate(B):
    st_sum.update(i, b != 0)

for line in query:
    if len(line) == 4:
        q, l, r, x = line
        l -= 1
        r -= 1
        if l != 0:
            B[l-1] += x
            st_sum.update(l-1, B[l-1] != 0)
        if r != N:
            B[r] -= x
            st_sum.update(r, B[r] != 0)
    elif len(line) == 3:
        q, l, r = line
        l -= 1
        r -= 1
        ans = st_sum.query(l, r) + 1
        print(ans)
0