What happened to zh0ukangyang ??
Did this account get deleted as he had one more in top 10 ?
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
What happened to zh0ukangyang ??
Did this account get deleted as he had one more in top 10 ?
I'll keep it short.
Bob has an element x and Alice has a permutation p of size n.
Alice goes through the permutation sequentially and asks Bob what is the relation between x and p[i] .
if p[i] < x + 0.5 Bob replies '<' otherwise Bob replies '>'.
Ex: x = 2 and p = [1,3,2] gives us a string "<><" .
Now Alice is smart and does not ask unnecessary questions.
Ex: x = 2 and p = [3,4,1,2] will gives us a string "><<"
Here Alice ignores the 2nd element because in first question she determined that 3 > x+0.5 so of course 4 is also going to be greater than x+0.5 .
Let c be the number of times "><" occurs as a substring in our resultant string. Find all c for x in range 0 to n.
input:
6
5 1 2 4 3 6
output:
0 1 1 2 1 0 0
I did a brute force O(n^2) solution using stack but as expected got TLE in some tc's as n<=2*1e5. Can someone please guide me towards an efficient solution
Name |
---|