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!
№ | Пользователь | Рейтинг |
---|---|---|
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 | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Название |
---|
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.