Here is a link for the problem.
I found an approach in discussion: "You have to divide the participants into equal teams (rounded)", but I cannot understand why it's correct!
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | adamant | 152 |
| 3 | Proof_by_QED | 146 |
| 3 | Um_nik | 146 |
| 5 | Dominater069 | 144 |
| 6 | errorgorn | 141 |
| 7 | cry | 139 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
| Name |
|---|



In this problem you need to divide them into M teams, so you need to find an array a[1..M] such that its sum is N and its product is maximized.
Okay, suppose there is an optimal sequence of a[] such that there are two elements with difference greater than 1. Then, product is P * X * Y (X + 1 < Y), where P is product of other elements, while X and Y are these two elements with difference greater than 1 (X + 1 < Y).
Now, let's make X++ and Y-- and see what happens. Product becomes P * (X + 1) * (Y — 1) = P * X * Y + P * Y — P * X — P = P * X * Y + P * (Y — X — 1), we know that (Y > X + 1), thus Y — X — 1 at least 1, so answer becomes better.