i'm stuck on this problem
http://lightoj.com:81/volume/problem/1187
forum says there is an O(n) greedy and an nlog(n) solution with BIT/segtree .can you give any hint or idea so i can get closer to solve this.
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 165 |
2 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
i'm stuck on this problem
http://lightoj.com:81/volume/problem/1187
forum says there is an O(n) greedy and an nlog(n) solution with BIT/segtree .can you give any hint or idea so i can get closer to solve this.
Название |
---|
consider the sample test:
3
0 1 0
fill the leaf nodes of your segment tree by 1 such the the leaves are 1(st=ed=1) 1(st=ed=2) 1(st=ed=3).
scan right to left from your input array.
1st iteration: you have 3 people and 0 people is taller than him so kill (3-0)=3rd person from the tree.
now the tree looks like 1(st=ed=1) 1(st=ed=2) 0(st=ed=3).
2nd iteration: you have 2 people and 1 people is taller than him so kill (2-1)=1st person from the tree.
now the tree looks like 0(st=ed=1) 1(st=ed=2) 0(st=ed=3).
finally find the index(st or ed of the node as they are same) which contain 1.
try by your self.
then you can take help from my code.
How does your method work for the 2nd sample case?
3 0 1 2