题目 - A Simple Problem with Integers
You have N integers, A1, A2, … , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is to ask for the sum of numbers in a given interval.
Input
The first line contains two numbers N and Q. 1 ≤ N,Q ≤ 100000.
The second line contains N numbers, the initial values of A1, A2, … , AN. -1000000000 ≤ Ai ≤ 1000000000.
Each of the next Q lines represents an operation.
“C a b c“ means adding c to each of Aa, Aa+1, … , Ab. -10000 ≤ c ≤ 10000.
“Q a b“ means querying the sum of Aa, Aa+1, … , Ab.
Output
You need to answer all Q commands in order. One answer in a line.
Sample Input
1 | 10 5 |
Sample Output
1 | 4 |
Hint
The sums may exceed the range of 32-bit integers.
题目大意:
给出N个数,进行Q个操作,1<=N,Q<=100000。有两种操作:
“C a b c”,对区间[a,b]的每个数字加c
”Q a b c”,查询区间[a,b]的数字和
解题:
区间修改模板,TLE了一次。
AC代码:
1 |
|