I was trying this problem for quite a while, but failed to come up with the correct solution. Maybe you guys can help me.
Problem link: http://main.edu.pl/en/archive/oi/2/sze
# | User | Rating |
---|---|---|
1 | jiangly | 4039 |
2 | tourist | 3841 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3590 |
5 | ecnerwala | 3542 |
6 | Benq | 3535 |
7 | orzdevinwang | 3526 |
8 | gamegame | 3477 |
9 | heuristica | 3357 |
10 | Radewoosh | 3355 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | atcoder_official | 160 |
3 | Um_nik | 160 |
5 | djm03178 | 158 |
6 | Dominater069 | 156 |
7 | adamant | 153 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
I was trying this problem for quite a while, but failed to come up with the correct solution. Maybe you guys can help me.
Problem link: http://main.edu.pl/en/archive/oi/2/sze
Name |
---|
Think about some job i, i+1. The total time to complete job i+1 (in order of [1 ... i-1] [i] [i+1]) is
T + aiT + bi + ai + 1(T + aiT + bi) + bi + 1
= (ai + 1 + 1)((ai + 1)T + bi) + bi + 1
when T = total time took to complete till job i-1
now think that we process in order of [1 ... i-1] [i+1] [i], then the total time is
(ai + 1)((ai + 1 + 1)T + bi + 1) + bi
Say ci = ai + 1. now, if this inequality holds, it's better to swap job i and i+1.
ci + 1ciT + ci + 1bi + bi + 1 > cici + 1T + cibi + 1 + bi
which is
ci + 1bi + bi + 1 > cibi + 1 + bi
now replace ci to ai, we get :
ai + 1bi > bi + 1ai
So, if above equality holds, we should swap i and i+1. This is essentially angular sort.
code : http://ideone.com/c70x8s
Thanks a lot. That's a really nice solution :)