http://acm.timus.ru/problem.aspx?num=1028
can somenone explain me how to do it using segment tree????
# | User | Rating |
---|---|---|
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 |
# | User | Contrib. |
---|---|---|
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 |
http://acm.timus.ru/problem.aspx?num=1028
can somenone explain me how to do it using segment tree????
Name |
---|
It's clearly classic segment tree
first of all sort all points in increasing order, then start from first point in sorted list and count number of points with smaller or equal Y than this point in segment tree and after that increase value of point's Y in segment tree and see next point in sorted list ...
this is my accepted code
i am getting WA on test case 3 :(
here is my code: http://pastebin.com/W0iHVkt2
i have created a tree the lowest level having leaves like 0-1,1-2,2-3 etc
the in the query i have add all the ranges which is lower the query number(the global variable L will hold the info)
like query(5) will return the total numbers which are in range (0-3)+(3-5)
the i have update the whole tree if the the number is in between the range
whats wrong with the idea ???
GOT AC after 1 day of coding
SO HAPYYY
GREAT THANKS MMJ
Congratulations ! your welcome :)