MULTQ3 - Multiples of 3
There are N numbers a[0], a[1] ... a[N - 1]. Initially all are 0. You have to perform two types of operations :
- Increase the numbers between indices A and B (inclusive) by 1. This is represented by the command "0 A B"
- Answer how many numbers between indices A and B (inclusive) are divisible by 3. This is represented by the command "1 A B".
Input
The first line contains two integers, N and Q. Each of the next Q lines are either of the form "0 A B" or "1 A B" as mentioned above.
Output
Output 1 line for each of the queries of the form "1 A B" containing the required answer for the corresponding query.
Sample
Input: 4 7 1 0 3 0 1 2 0 1 3 1 0 0 0 0 3 1 3 3 1 0 3 Output: 4 1 0 2
Constraints
1 ≤ N ≤ 100000
1 ≤ Q ≤ 100000
0 ≤ A ≤ B ≤ N - 1
hide comments
iam_ss:
2017-03-16 20:01:38
Easy question and a good practice for lazy propagation using Segmented Trees. |
|
duongcscx:
2017-03-08 04:30:35
Interval tree and Lazy propagation one hit AC ;) |
|
harshit_walia:
2017-02-12 11:34:46
After 4 hrs of debugging.. it finally got accepted.
|
|
shubham2305:
2017-01-23 20:54:27
c++ 4.3.2 compilation error
|
|
vivek4434:
2016-12-20 08:43:00
why i'm getting TLE ...
|
|
conquistador:
2016-12-06 19:10:21
#caution #hint
|
|
ashishranjan28:
2016-11-03 08:49:05
long long int causes several tle for me...
|
|
uddhav:
2016-11-02 16:18:05
using long long int gives tle on test 9. Same code with int gives AC !! |
|
pranavanurag:
2016-08-27 09:37:05
If getting WA, check the way you are propagating laziness. Took me a day to debug.. Last edit: 2016-08-27 10:04:44 |
|
force_sust:
2016-08-15 19:43:08
why its wa in test 9...??
|
Added by: | Varun Jalan |
Date: | 2010-09-12 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS OBJC VB.NET |
Resource: | own problem |