codeforces 315 B.Sereja and Array(线段树区间更新+单点更新+单点询问)

93 篇文章 1 订阅
52 篇文章 0 订阅

Sereja has got an array, consisting of n integers, a1, a2, ..., an. Sereja is an active boy, so he is now going to complete m operations. Each operation will have one of the three forms:

  1. Make vi-th array element equal to xi. In other words, perform the assignment avi = xi.
  2. Increase each array element by yi. In other words, perform n assignments ai = ai + yi (1 ≤ i ≤ n).
  3. Take a piece of paper and write out the qi-th array element. That is, the element aqi.

Help Sereja, complete all his operations.

Input

The first line contains integers nm (1 ≤ n, m ≤ 105). The second line contains nspace-separated integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the original array.

Next m lines describe operations, the i-th line describes the i-th operation. The first number in the i-th line is integer ti (1 ≤ ti ≤ 3) that represents the operation type. If ti = 1, then it is followed by two integers vi and xi(1 ≤ vi ≤ n, 1 ≤ xi ≤ 109). If ti = 2, then it is followed by integer yi (1 ≤ yi ≤ 104). And if ti = 3, then it is followed by integer qi (1 ≤ qi ≤ n).

Output

For each third type operation print value aqi. Print the values in the order, in which the corresponding queries follow in the input.

Example
Input
10 11
1 2 3 4 5 6 7 8 9 10
3 2
3 9
2 10
3 1
3 10
1 1 10
2 10
2 10
3 1
3 10
3 9
Output
2
9
11
20
30
40
39


题解:

题意:

操作1 x y表示将a[x]=y

操作2 x 表示全体数列值加上x

操作3 x 表示询问a[x]处的值

思路:

比较裸的一道线段树的题,然后这里的区间更新因为是全体更新所以可以偷懒

代码:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<queue>
#include<stack>
#include<math.h>
#include<vector>
#include<map>
#include<set>
#include<stdlib.h>
#include<cmath>
#include<string>
#include<algorithm>
#include<iostream>
using namespace std;
#define lson k*2
#define rson k*2+1
#define M (t[k].l+t[k].r)/2
struct node
{
    int v;
    int tag;
    int l,r;
}t[100005*4];
void pushdown(int k)
{
    if(t[k].tag)
    {
        t[lson].tag+=t[k].tag;
        t[rson].tag+=t[k].tag;
        if(t[lson].l==t[lson].r)
            t[lson].v+=t[k].tag;
        if(t[rson].l==t[rson].r)
            t[rson].v+=t[k].tag;
        t[k].tag=0;
    }
}
void Build(int l,int r,int k)
{
    t[k].l=l;
    t[k].r=r;
    t[k].tag=0;
    if(l==r)
    {
        scanf("%d",&t[k].v);
        return;
    }
    int mid=M;
    Build(l,mid,lson);
    Build(mid+1,r,rson);
}
void update(int k,int v)
{
    t[k].v+=v;
    t[k].tag+=v;
}
void change(int x,int v,int k)
{
    if(t[k].l==x&&t[k].r==x)
    {
        t[k].v=v;
        return;
    }
    pushdown(k);
    int mid=M;
    if(x<=mid)
        change(x,v,lson);
    else
        change(x,v,rson);
}
int query(int x,int k)
{
    if(t[k].l==x&&t[k].r==x)
    {
        return t[k].v;
    }
    pushdown(k);
    int mid=M;
    if(x<=mid)
        return query(x,lson);
    else
        return query(x,rson);
}
int main()
{
    int i,j,n,m,d,x,y;
    scanf("%d%d",&n,&m);
    Build(1,n,1);
    while(m--)
    {
        scanf("%d",&d);
        if(d==1)
        {
            scanf("%d%d",&x,&y);
            change(x,y,1);
        }
        else if(d==2)
        {
            scanf("%d",&x);
            update(1,x);
        }
        else
        {
            scanf("%d",&x);
            printf("%d\n",query(x,1));
        }
    }
    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值