How can i solve ioi 2013 practice task problems specially citizen task
# | 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 |
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)
{
}