is it true that ?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Name |
---|
Just thoughts.
L is left part, R is right part.
L = PL1 + PL2 + ... + PLk
R = PR1 + PR2 + ... + PRk
My theory is for all i = 1..k PLi > PRi.
Induction. Base i = 1.
So for x > 0: PL1 > PR1
And I really don't know what's next (if I'm on the right path).
Yeah, it is true. But proving this is a bit painful. Here is the only way I know:
Reminder: generating function of sequence is formal series .
Consider amount of ways to split number in sum of distinct numbers. Generating function for this sequence is . Now consider number of ways to split number in sum of not necessary distinct odd numbers. Generating function for this sequence is . Let's multiply each functions by . Then first one becomes and the second one become . Thus number of ways to split in distinct numbers equals number of ways to split in in odd numbers (you can also prove it with some combinatorics, I guess).
Now consider which is the number of ways to split in distinct numbers. . Thus if then . Then .
And with odd numbers part we have . Since , we have equation from the statement now.
Understanding of correctness of each transition in proof is left to reader as an excercise ;)