Submit | All submissions | Best solutions | Back to list |
RACETIME - Race Against Time |
As another one of their crazy antics, the N (1 ≤ N ≤ 100,000) cows want Farmer John to race against the clock to answer some of their pressing questions.
The cows are lined up in a row from 1 to N, and each one is holding a sign representing a number, Ai (1 ≤ Ai ≤ 1,000,000,000). The cows need FJ to perform Q (1 ≤ Q ≤ 50,000) operations, which can be either of the following:
- Modify cow i's number to X (1 ≤ X ≤ 1,000,000,000). This will be represented in the input as a line containing the letter M followed by the space-separated numbers i and X.
- Count how many cows in the range [P, Q] (1 ≤ P ≤ Q ≤ N) have Ai ≤ X (0 ≤ X ≤ 1,000,000,000). This will be represented in the input as a line containing the letter C followed by the space-separated numbers P, Q, and X.
Of course, FJ would like your help.
Input
The first line gives the integers N and Q, and the next N lines give the initial values of Ai. Finally, the next Q lines each contain a query of the form "M i X" or "C P Q X".
Output
Print the answer to each 'C' query, one per line.
Example
Input: 4 6 3 4 1 7 C 2 4 4 M 4 1 C 2 4 4 C 1 4 5 M 2 10 C 1 3 9 Output: 2 3 4 2
FJ has 4 cows, whose initial numbers are 3, 4, 1, and 7. The cows then give him 6 operations; the first asks him to count the how many of the last three cows have a number at most 4, the second asks him to change the fourth cow's number to 1, etc.
Warning: large input/output data.Added by: | Neal Wu |
Date: | 2008-10-25 |
Time limit: | 1s-1.200s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO |
hide comments
|
||||||
2022-12-15 15:21:37
coordinate compression + sqrt-decomposition + fenwick2d |
||||||
2022-09-12 08:12:05
OH!I got AC just now. |
||||||
2022-09-12 08:03:04
It's too hard for me to solve this without my WA data.I can't hack myself. |
||||||
2022-09-12 08:02:04
Friends,how can I get my WA data? |
||||||
2022-01-19 16:47:43
getting WA on TC-7 using sqrt decomposition with binary search |
||||||
2021-10-18 03:34:02
Simple sqrt decomposition with binary search :) |
||||||
2021-07-27 09:45:24
my merge sort Tree giving TLE what to do..... time complexity- O( N*LogN^2 + Q*LogN^2) |
||||||
2020-07-11 23:59:07
Why my code with N*log2(N) not passing ? |
||||||
2020-04-29 15:29:21
AC in one go using sqrt decomposition. No issue faced for TLE ( I think there must be some implementation problem or the Time Constraints might have been updated). |
||||||
2020-03-21 17:29:01
Really nice problem. Take note of queries that lie in the same block (when using sqrt decomp) |