http://acm.timus.ru/problem.aspx?num=1028
can somenone explain me how to do it using segment tree????
# | 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 | adamant | 151 |
7 | djm03178 | 151 |
9 | luogu_official | 150 |
10 | awoo | 146 |
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 :)