博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sereja and Array-数组操作或者线段树或树状数组
阅读量:5937 次
发布时间:2019-06-19

本文共 2145 字,大约阅读时间需要 7 分钟。

Time Limit: 1000MS   Memory Limit: 262144KB   64bit IO Format: %I64d & %I64u

 

Description

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 n space-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.

Sample Input

Input
10 111 2 3 4 5 6 7 8 9 103 23 92 103 13 101 1 102 102 103 13 103 9
Output
291120304039
 
这道题目大家须要思考,不要一看到题目就用线段树,要想想有没有更好的方法,这里的题目给出的三种操作
能够知道没有一个是对区间进行操作的,唯一一个都是对整个数组操作。对全部的数的影响一样。

所以代码便能够变为例如以下:
 
/*Author: 2486Memory: 204 KB		Time: 93 MSLanguage: GNU G++11 4.9.2		Result: AcceptedVJ RunId: 4206974		Real RunId: 12270208Public:		No Yes*/#include 
#include
#include
using namespace std;const int maxn=1e5+5;int n,m,p,c,v,a[maxn];int main() { scanf("%d%d",&n,&m); for(int i=1; i<=n; i++) { scanf("%d",&a[i]); } int cnt=0; while(m--) { scanf("%d%d",&p,&c); if(p==1) { scanf("%d",&v); a[c]=v-cnt; } else if(p==2) { cnt+=c; } else { printf("%d\n",a[c]+cnt); } } return 0;}

转载地址:http://hsvtx.baihongyu.com/

你可能感兴趣的文章
SCNetworkReachabilityRef监测网络状态
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
接口由40秒到200ms优化记录
查看>>
java 视频播放 多人及时弹幕技术 代码生成器 websocket springmvc mybatis SSM
查看>>
Activiti6.0,spring5,SSM,工作流引擎,OA
查看>>
第十三章:SpringCloud Config Client的配置
查看>>
使用 GPUImage 实现一个简单相机
查看>>
CoinWhiteBook:区块链在慈善事业中的应用
查看>>
【二】express
查看>>
Mac上基于Github搭建Hexo博客
查看>>
What does corn harvester involve?
查看>>
阿里云服务器ECS开放8080端口
查看>>
前端常用排序详解
查看>>
Spring中实现监听的方法
查看>>
使用Tooltip会出现一个问题,如果行上出现复选框
查看>>
11.03T1 DP
查看>>
P2924 [USACO08DEC]大栅栏Largest Fence
查看>>
jQuery操作table tr td
查看>>
工作总结:MFC自写排序算法(升序)
查看>>
螺旋队列问题之二
查看>>