程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj3468A Simple Problem with Integers(線段樹+成段更新)
poj3468A Simple Problem with Integers(線段樹+成段更新)
編輯:C++入門知識
poj3468A Simple Problem with Integers(線段樹+成段更新)
題目鏈接:
huangjing
題意:
給n個數,然後有兩種操作。
【1】Q a b 詢問a到b區間的和。
【2】C a b c將區間a到b的值都增加c。
思路:
線段樹成段更新的入門題目。。學會使用lazy即可。還需要注意的是,lazy的時候更改是累加,而不是直接修改。。有可能連續幾次進行修改操作。。注意這一點就好了。。。
題目:
Language:
A Simple Problem with Integers
Time Limit: 5000MS
Memory Limit: 131072K
Total Submissions: 62629
Accepted: 19215
Case Time Limit: 2000MS
Description
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.