If we have to perform range update query many times, Can we reduce the overall time?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
If we have to perform range update query many times, Can we reduce the overall time?
Название |
---|
yes, method of events...
for example:
you want to apply update "L R x" — add x on segment [L;R]
then just add event1 (time = L, change = +x), and event2 (time = R + 1, change = -x)
then just go from 1 to n and apply your events to calculate current element...
And what if we need to query elements?
then there's obviously no solution faster than logn
Why obviously? who proved that?
you're free to think a solution exists... =.=
What is the pre-processing required,and meaning of this line "_go from 1 to n and apply your events to calculate current element.._" Can you explain in detail Please! I am a beginner.
When you have query update L R x, you can do it in O(1): arr[L]+=x;arr[R+1]-=x; Then the value of the element on position i will be arr[1]+arr[2]+...+arr[i].
If in case we have large number of point update queries,can we also reduce the overall time?