By script, I mean what method do you use to stress test your solution(code maybe?)
# | 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 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
6 | Dominater069 | 156 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
By script, I mean what method do you use to stress test your solution(code maybe?)
Name |
---|
i verify it on paper firstly even then if i get WA i try to think of corner cases most of the times it works
I do this only when the following is true (quite frankly, this happens often):
problem is about an array without special properties (that is, random array will be a valid input)
I came up with greedy algorithm or dp without a solid proof, and it gives WA
I can write a checker, i.e. check that my answer is correct -- for example if I have to output a number of transformations that will lead to something that is easy to check
Then I just replace each "read" statement with something like
rand() % max_value_for_this_variable
, and run all this in a loop of 1000 and see if there is a mistake somewhere.Sometimes I also do this if I know I have an integer overflow or out-of-bounds access, but cannot find where.