How could i solve this problem.Please help me to solve this problem. Thanks in advance :)
# | User | Rating |
---|---|---|
1 | tourist | 3857 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3463 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 166 |
2 | -is-this-fft- | 161 |
3 | Qingyu | 160 |
4 | Dominater069 | 159 |
5 | atcoder_official | 157 |
6 | adamant | 155 |
7 | Um_nik | 152 |
8 | djm03178 | 151 |
9 | luogu_official | 150 |
10 | awoo | 148 |
How could i solve this problem.Please help me to solve this problem. Thanks in advance :)
Name |
---|
It is just (A1 + 1)(A2 + 1)...(An + 1) - 1. Expand it for proof.
sorry,,i can't get any proof though it works well :) Thank you .Could you please help me to get the proof of your solution?
Proof by induction on size of array.
It's true for size = 1. Inductive step : moving from i-1 to i, use the recurrence mentioned in NMouad21's comment.
You can solve it by a simple O(n) DP approach.
let's suppose we have the answer to the prefix array ending at i — 1. if we add one element, which is a[i] then the answer for the prefix ending at i is:
ans[i] = ans[i — 1] + ans[i — 1]*a[i] + a[i];
and finally, the answer is just ans[n] of course
Here's an example code: https://ideone.com/VbqE9b