How can i solve ioi 2013 practice task problems specially citizen task
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | Um_nik | 161 |
4 | atcoder_official | 160 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
How can i solve ioi 2013 practice task problems specially citizen task
Name |
---|
I have a solution to the citicen task, but unfortunately I can't proof it.
My Algorithm is: sort due to a special rule and than go threw the sorted array and take all elements, which are possible in attention to the previously taken ones. (i.e. Q < min(taken P))
To compare two countries on smaller, you use the following function.
P1 < Q2 && P2 > Q1 -> country 1 is not smaller
P2 < Q1 && P1 > Q2 -> country 1 is smaller
P1 > Q2 && P2 > Q1 -> country 1 is smaller if: Q1 > Q2
else country 1 is smaller if: P1 > P2
Can anyone proof this... (due to tests with more than 1 Million of test data i think it is correct)
can you publish your source code
Please proof or disproof it — I had this problem, when i had to explain my solution in the training programm for the IOI.
struct T {
};
int countries(int N, int *pP, int *pQ)
{
}