codeforces 250 div1 D

D. The Child and Sequence
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

At the children's day, the child came to Picks's house, and messed his house up. Picks was angry at him. A lot of important things were lost, in particular the favorite sequence of Picks.

Fortunately, Picks remembers how to repair the sequence. Initially he should create an integer array a[1], a[2], ..., a[n]. Then he should perform a sequence of m operations. An operation can be one of the following:

  1. Print operation l, r. Picks should write down the value of .
  2. Modulo operation l, r, x. Picks should perform assignment a[i] = a[imod x for each i (l ≤ i ≤ r).
  3. Set operation k, x. Picks should set the value of a[k] to x (in other words perform an assignment a[k] = x).

Can you help Picks to perform the whole sequence of operations?

Input

The first line of input contains two integer: n, m (1 ≤ n, m ≤ 105). The second line contains n integers, separated by space:a[1], a[2], ..., a[n] (1 ≤ a[i] ≤ 109) — initial value of array elements.

Each of the next m lines begins with a number type .

  • If type = 1, there will be two integers more in the line: l, r (1 ≤ l ≤ r ≤ n), which correspond the operation 1.
  • If type = 2, there will be three integers more in the line: l, r, x (1 ≤ l ≤ r ≤ n; 1 ≤ x ≤ 109), which correspond the operation 2.
  • If type = 3, there will be two integers more in the line: k, x (1 ≤ k ≤ n; 1 ≤ x ≤ 109), which correspond the operation 3.
Output

For each operation 1, please print a line containing the answer. Notice that the answer may exceed the 32-bit integer.

Sample test(s)
input
5 5
1 2 3 4 5
2 3 5 4
3 3 5
1 2 5
2 1 3 3
1 1 3
output
8
5
input
10 10
6 9 6 7 6 1 10 10 9 5
1 3 9
2 7 10 9
2 5 10 8
1 4 7
3 3 7
2 7 9 9
1 2 4
1 6 6
1 5 9
3 1 10
output
49
15
23
1
9
Note

Consider the first testcase:

  • At first, a = {1, 2, 3, 4, 5}.
  • After operation 1a = {1, 2, 3, 0, 1}.
  • After operation 2a = {1, 2, 5, 0, 1}.
  • At operation 32 + 5 + 0 + 1 = 8.
  • After operation 4a = {1, 2, 2, 0, 1}.
  • At operation 51 + 2 + 2 = 5.


    #include <cstdio>
    #include <iostream>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    #define LL long long
    #define N 100000 + 10
    #define lson L, mid, rt<<1
    #define rson mid + 1, R, rt<<1|1
    int n, m;
    LL sum[N<<2];
    int mx[N<<2];
    inline void pushup(int rt)
    {
        sum[rt] = sum[rt<<1] + sum[rt<<1|1];
        mx[rt] = max(mx[rt<<1], mx[rt<<1|1]);
    }
    void build(int L, int R, int rt)
    {
        if(L == R)
        {
            scanf("%I64d", &sum[rt]);
            mx[rt] = sum[rt];
            return ;
        }
        int mid = (L + R) >> 1;
        build(lson);
        build(rson);
        pushup(rt);
    }
    void update1(int l, int r, int x, int L, int R, int rt)
    {
        if(mx[rt] < x) return ;
        if(L == R)
        {
            sum[rt] %= x;
            mx[rt] = sum[rt];
            return ;
        }
        int mid = (L + R) >> 1;
        if(l <= mid) update1(l, r, x, lson);
        if(r > mid) update1(l, r, x, rson);
    //    if(r <= mid) update1(l, r, x, lson);
    //    else if(l > mid) update1(l, r, x, rson);
    //    else update1(l, mid, x, lson), update1(mid + 1, r, x, rson);
        pushup(rt);
    }
    void update2(int t, int v, int L, int R, int rt)
    {
        if(L == R)
        {
            sum[rt] = mx[rt] = v;
            return ;
        }
        int mid = (L + R) >> 1;
        if(t <= mid) update2(t, v, lson);
        else update2(t, v, rson);
        pushup(rt);
    }
    inline LL query(int l, int r, int L, int R, int rt)
    {
        if(l <= L && R <= r)
        {
            return sum[rt];
        }
        int mid = (L + R) >> 1;
        LL res = 0 ;
        if(l <= mid)  res += query(l, r, lson);
        if(r > mid) res += query(l, r, rson);
        return res ;
    //    if(r <= mid) return query(l, r, lson);
    //    else if(l > mid) return query(l, r, rson);
    //    else return query(l, mid, lson) + query(mid + 1, r, rson);
    }
    int main()
    {
        scanf("%d%d", &n, &m);
        build(1, n, 1);
        for(int i = 0; i < m; i++)
        {
            int a, b, c, d ;
            scanf("%d%d%d", &a, &b, &c);
            if(a == 1) printf("%I64d\n", query(b, c, 1, n, 1));
            else if(a == 2)
            {
                scanf("%d", &d);
                update1(b, c, d, 1, n, 1);
            }
            else update2(b, c, 1, n, 1);
        }
        return 0;
    }
    


    评论
    添加红包

    请填写红包祝福语或标题

    红包个数最小为10个

    红包金额最低5元

    当前余额3.43前往充值 >
    需支付:10.00
    成就一亿技术人!
    领取后你会自动成为博主和红包主的粉丝 规则
    hope_wisdom
    发出的红包
    实付
    使用余额支付
    点击重新获取
    扫码支付
    钱包余额 0

    抵扣说明:

    1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
    2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

    余额充值