結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー i_takui_taku
提出日時 2023-05-19 21:55:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,809 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-12-18 02:37:56
合計ジャッジ時間 7,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 55 ms
66,560 KB
testcase_03 AC 45 ms
61,456 KB
testcase_04 AC 60 ms
70,016 KB
testcase_05 AC 60 ms
71,680 KB
testcase_06 AC 60 ms
70,656 KB
testcase_07 AC 178 ms
88,576 KB
testcase_08 AC 97 ms
82,560 KB
testcase_09 AC 132 ms
88,192 KB
testcase_10 AC 123 ms
77,216 KB
testcase_11 AC 142 ms
84,164 KB
testcase_12 AC 168 ms
91,600 KB
testcase_13 AC 148 ms
90,112 KB
testcase_14 AC 125 ms
84,804 KB
testcase_15 AC 194 ms
84,268 KB
testcase_16 AC 187 ms
78,976 KB
testcase_17 AC 226 ms
91,776 KB
testcase_18 AC 223 ms
92,064 KB
testcase_19 AC 222 ms
92,160 KB
testcase_20 AC 225 ms
91,892 KB
testcase_21 AC 224 ms
91,716 KB
testcase_22 AC 230 ms
92,140 KB
testcase_23 AC 223 ms
92,056 KB
testcase_24 AC 215 ms
92,032 KB
testcase_25 AC 215 ms
91,888 KB
testcase_26 AC 215 ms
91,884 KB
testcase_27 AC 193 ms
91,136 KB
testcase_28 AC 200 ms
91,036 KB
testcase_29 AC 153 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def main():
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    Q = int(input())
    A_square = [a**2 for a in A]
    st = SegTree(A_square, op, 0)
    for _ in range(Q):
        c, k, d = map(int, input().split())
        c, d = c - 1, d - 1
        cn = int(st.get_value(c)**(1 / 2))
        dn = int(st.get_value(d)**(1 / 2))
        st.update(c, (cn - k)**2)
        st.update(d, (dn + k)**2)
        print(st.query(0, M))
        

def op(x, y):
    return x + y


class SegTree:
    def __init__(self, ls, op, e):
        n = len(ls)
        self.op = op
        self.e = e
        self.size = 1 << (n - 1).bit_length()
        self.tree = [self.e] * (2 * self.size)
        # 葉に対象の列を格納
        for i in range(n):
            self.tree[self.size + i] = ls[i]
        # 葉に近い場所から順に更新
        for i in range(self.size - 1, 0, -1):
            self.tree[i] = self.op(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        # 葉に移動
        k += self.size
        # 関連する場所を更新
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.op(self.tree[k], self.tree[k ^ 1])
            k >>= 1
        
    def query(self, l, r):
        res = self.e
        # 葉に移動
        l += self.size
        r += self.size        
        # 未計算の区間がなくなるまで
        while l < r:
            if l & 1:
                res = self.op(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.op(res, self.tree[r - 1])
            # 親に移動
            l >>= 1
            r >>= 1
        return res

    def get_value(self, k):
        return self.tree[k + self.size]


main()
0