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