How can i solve ioi 2013 practice task problems specially citizen task
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
How can i solve ioi 2013 practice task problems specially citizen task
Название |
---|
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)
{
}