How to find number of elements greater than that elements for all elements of the array on the right side.
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
How to find number of elements greater than that elements for all elements of the array on the right side.
Name |
---|
You can use policy based data structure ( Ordered set ) . Then you can traverse the array from the right and keep checking no. of elements using order_of_key(a[i]) . o(nlogn) tc
I guess ordered set not work in case of duplicate element.
It works
4 types of modification you can do Greater Greater Equal Less Less Equal
Also ig it can be done using Divide and conquer ( Merge sort )
Here similar problem on leetcode :
https://leetcode.com/problems/count-of-smaller-numbers-after-self/description/
You can also use Segment Tree, if array value is large in that case you have to normalize it down to <=n range.
Can you explain more as I am not much familiar with segment tree.
you can sort the array in decreasing order keeping their index then you build segment / fenwick tree ans for index i is i — sum(0..j) j denotes index of element in original array then update the value of segment / fenwick tree. sum(0..i) denotes cnt of elements having value less <= element at index i and index < j
Caculate i < j and a_i < a_j. Enumerate from n to 1. For position i, you only need to caculate how many greater than a_i. Use BIT, query(n) — query(a[i]) is answer for position i.
Also, you should normalize a[i] to the range [1,n]
Can you please explain this in a bit more detail and with clarity? Also what is the time complexity of this approach?
i guess find the next greater element for every element to its right and add 1 to the answer* of that element to get the answer for this element.
I guess you are trying to find count of inversions in array which is
if i < j and a[i] > a[j]
This can be done using merge sort along with a simple modification.
Link to understand sol
Statement's really unclear, can you clarify what the problem is?