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 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 151 |
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 :)