How to solve this problem.
Given an array of N integers and we have to perform two type of queries ?
1: L,R,K --> find sum of values in range L to R which are less than K ?
2: A,K --> update value at positon ath index to K i.e arr[A]=K;
N,Q <=1e5.
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | djm03178 | 152 |
7 | adamant | 152 |
9 | luogu_official | 151 |
10 | awoo | 147 |
How to find sum of values in range which are less than 'K' ?
How to solve this problem.
Given an array of N integers and we have to perform two type of queries ?
1: L,R,K --> find sum of values in range L to R which are less than K ?
2: A,K --> update value at positon ath index to K i.e arr[A]=K;
N,Q <=1e5.
Rev. | Lang. | By | When | Δ | Comment | |
---|---|---|---|---|---|---|
en4 |
![]() |
agrawal117 | 2020-07-14 00:34:58 | 0 | (published) | |
en3 |
![]() |
agrawal117 | 2020-07-14 00:30:01 | 4 | Tiny change: 't positon ath index to K i.e arr[A' -> 't positon Ath index to M i.e arr[A' (saved to drafts) | |
en2 |
![]() |
agrawal117 | 2020-07-14 00:27:21 | 4 | ||
en1 |
![]() |
agrawal117 | 2020-07-14 00:12:01 | 355 | Initial revision (published) |
Name |
---|