HORRIBLE - Horrible Queries
World is getting more evil and it's getting tougher to get into the Evil League of Evil. Since the legendary Bad Horse has retired, now you have to correctly answer the evil questions of Dr. Horrible, who has a PhD in horribleness (but not in Computer Science). You are given an array of N elements, which are initially all 0. After that you will be given C commands. They are:
- 0 p q v - you have to add v to all numbers in the range of p to q (inclusive), where p and q are two indexes of the array.
- 1 p q - output a line containing a single integer which is the sum of all the array elements between p and q inclusive.
Input
In the first line you'll be given T, number of test cases.
Each test case will start with N (N ≤ 100 000) and C (C ≤ 100 000). After that you'll be given C commands in the format as mentioned above. 1 ≤ p, q ≤ N and 1 ≤ v ≤ 107.
Output
Print the answers of the queries.
Example
Input:
1
8 6
0 2 4 26
0 4 8 80
0 4 5 20
1 8 8
0 5 7 14
1 4 8
Output:
80
508
hide comments
|
codeanna:
2019-10-27 08:34:14
direct implementation of lazy propagation...
|
|
sapjv:
2019-10-16 16:27:08
Don't forget to clear segment tree array and lazy array after each test case. It costed me 4 WAs. |
|
hasib_ullah:
2019-10-15 20:56:43
Try using long(java) or long long int(c++) for every variable except for array index which will be in int. I got mine excepted this way.. Last edit: 2019-10-15 22:10:07 |
|
shogun420:
2019-10-08 20:56:24
RIP long long int..
|
|
banrovegrie:
2019-09-21 17:06:59
baba black sheep have you any wool yes sir yes sir three bags fool
|
|
neuroxiq:
2019-08-31 19:27:04
Several WA using 2 BIT finally AC.
|
|
nikhil_sarda:
2019-08-31 16:10:05
Good question to learn lazy propagation in segment tree.
|
|
aryan29:
2019-07-10 21:43:31
I am doing everything right making array of 4*n making it zero after each test case using segment trees and lazy propog running good on tc on spoj toolkit still getting wa |
|
shreyansh_02:
2019-06-20 08:34:16
why is O(N) solution not getting accepted ?
|
|
prudhvi_495:
2019-06-16 11:30:36
I solved this by taking the array size as 4 * n + 1. Can anyone tell me why 2 * nextpowerof2(n) - 1 is giving wrong answer. |
Added by: | Iqram Mahmud |
Date: | 2010-12-04 |
Time limit: | 2.329s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | Own. Thanks to Emir Habul. |