Hello, I am curious to know if you try to prove observations you make for a problem during the ongoing contest or you are like "I think this can be done this way"...??
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Hello, I am curious to know if you try to prove observations you make for a problem during the ongoing contest or you are like "I think this can be done this way"...??
Название |
---|
I always prove in the contests that can only submit once(CNOI mode)
I usually prove it if it's easy and the pernalty affects
I usually prove-by-ac in an IOI-mode contest and the method is easy-coding.
I don't bother with formality and rigor, but I always try to at least justify any observations I make.
No most of the time. We usually come up with examples* to verify the hypotheses. And rely on gut feeling too. Sounds iffy but solving competitive programming problems doesn't require much rigor. Sure, you should test your submission carefully and make sure not to make silly mistakes during a contest but mathematical proofs sound way over the top.
I have nothing against proofs, though. Proofs are awesome. They're just not that useful during a contest.
* Your brain isn't a good random number generator. It is rather biased. Write a computer program to generate test cases instead. You can work them out by hand, however. A dozen cases or so and you can be very confident that your algorithm is correct.
Also I second what Shisuko said.
Not exactly prove, but I try to convince myself about some observations I made using contradictions and inductions.
I trust in my luck :v
I won't ever use an observation I cannot justify.
Love it!!
But sometimes if we don't go with our gut feeling, we might get late in submitting the sol? How u deal with that?
For eg. suppose your competitors have already solved it fast, and you have some intuition that might work. Do you actually wait & prove it, or do you just implement and submit?