結果

問題 No.1234 典型RMQ
ユーザー rlangevinrlangevin
提出日時 2023-12-13 12:35:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 4,139 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 93,924 KB
最終ジャッジ日時 2023-12-13 12:35:22
合計ジャッジ時間 13,525 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,460 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 39 ms
53,460 KB
testcase_03 AC 39 ms
53,460 KB
testcase_04 AC 38 ms
53,460 KB
testcase_05 AC 38 ms
53,460 KB
testcase_06 AC 443 ms
88,856 KB
testcase_07 AC 370 ms
78,284 KB
testcase_08 AC 474 ms
93,640 KB
testcase_09 AC 415 ms
83,624 KB
testcase_10 AC 434 ms
91,668 KB
testcase_11 AC 460 ms
88,604 KB
testcase_12 AC 401 ms
82,892 KB
testcase_13 AC 380 ms
78,848 KB
testcase_14 AC 411 ms
82,848 KB
testcase_15 AC 412 ms
82,020 KB
testcase_16 AC 477 ms
91,480 KB
testcase_17 AC 408 ms
82,944 KB
testcase_18 AC 341 ms
78,148 KB
testcase_19 AC 486 ms
93,316 KB
testcase_20 AC 260 ms
92,660 KB
testcase_21 AC 439 ms
88,932 KB
testcase_22 AC 377 ms
93,668 KB
testcase_23 AC 363 ms
93,668 KB
testcase_24 AC 356 ms
93,924 KB
testcase_25 AC 364 ms
93,668 KB
testcase_26 AC 360 ms
93,796 KB
testcase_27 AC 38 ms
53,460 KB
testcase_28 AC 38 ms
53,460 KB
testcase_29 AC 39 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class LazySegmentTree:
    def __init__(
        self,
        n,
        identity_e_node,
        identity_e_lazy,
        combine_node_f,
        combine_lazy_f,
        reflect_f,        
    ):
        self._n = n
        self._size = 1
        self._height = 0
        while self._size < self._n:
            self._size <<= 1
            self._height += 1
        self._identity_e_node = identity_e_node
        self._identity_e_lazy = identity_e_lazy
        self._combine_node_f = combine_node_f
        self._combine_lazy_f = combine_lazy_f
        self._reflect_f = reflect_f
        self._node = [self._identity_e_node] * (2 * self._size)
        self._lazy = [self._identity_e_lazy] * (2 * self._size)
        
    #遅延データの値を値データに反映させたときの値を返す。
    def _reflect_lazy(self, index):
        return self._reflect_f(self._node[index], self._lazy[index])
    
    def _propagate_from_top(self, index):
        index += self._size
        for h in range(self._height, 0, -1):
            i = index >> h
            if self._lazy[i] != self._identity_e_lazy:
                self._lazy[i << 1] = self._combine_lazy_f(
                    self._lazy[i << 1], self._lazy[i]
                )
                self._lazy[i << 1 | 1] = self._combine_lazy_f(
                    self._lazy[i << 1 | 1], self._lazy[i]
                )
                
                self._node[i] = self._reflect_lazy(i)
                self._lazy[i] = self._identity_e_lazy
                
    def _update_from_bottom(self, index):
        index = (index + self._size) >> 1
        while index:
            self._node[index] = self._combine_node_f(
                self._reflect_lazy(index << 1),
                self._reflect_lazy(index << 1 | 1)                
            )
            index >>= 1
            
    def build(self, array):
        assert len(array) == self._n
        for index, value in enumerate(array, start=self._size):
            self._node[index] = value
        for index in range(self._size - 1, 0, -1):
            self._node[index] = self._combine_node_f(
                self._node[index << 1],
                self._node[index << 1 | 1]    
            )
            
    # 区間更新 位置[L, R) (0-indexed)を値valueで更新
    def update(self, L, R, value):
        self._propagate_from_top(L)
        self._propagate_from_top(R - 1)
        
        L_lazy = L + self._size
        R_lazy = R + self._size
        while L_lazy < R_lazy:
            if L_lazy & 1:
                self._lazy[L_lazy] = self._combine_lazy_f(self._lazy[L_lazy], value)
                L_lazy += 1
            if R_lazy & 1:
                R_lazy -= 1
                self._lazy[R_lazy] = self._combine_lazy_f(self._lazy[R_lazy], value)
            L_lazy >>= 1
            R_lazy >>= 1
            
        self._update_from_bottom(L)
        self._update_from_bottom(R - 1)
        
    # 区間取得 区間[L, R) (0-indexed)内の要素について
    # L番目から順にcombine_node_fを適用した値を返す。
    def fold(self, L, R):
        self._propagate_from_top(L)
        self._propagate_from_top(R - 1)
        
        L += self._size
        R += self._size
        value_L = self._identity_e_node
        value_R = self._identity_e_node
        while L < R:
            if L & 1:
                value_L = self._combine_node_f(value_L, self._reflect_lazy(L))
                L += 1
            if R & 1:
                R -= 1
                value_R = self._combine_node_f(self._reflect_lazy(R), value_R)
            L >>= 1
            R >>= 1
        return self._combine_node_f(value_L, value_R)

N = int(input())
A = list(map(int, input().split()))

from operator import add    
T = LazySegmentTree(N,
                    10**18,
                    0,
                    min,
                    add,
                    add)
T.build(A)
Q = int(input())
for _ in range(Q):
    k, l, r, c = map(int, input().split())
    l -= 1
    if k == 1:
        T.update(l, r, c)
    else:
        print(T.fold(l, r))
0