# | User | Rating |
---|---|---|
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 |
# | User | Contrib. |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Name |
---|
well https://codeforces.net/blog/entry/1292 and https://github.com/MikeMirzayanov/testlib
Thanks, but I've already checked those, and I don't think they cover all the capabilities of testlib.
sorry idk of any other sources other than a lot of posts with 'testlib' tag and github link
Don't worry, thank you for the given information.
ur welcome :)
https://codeforces.net/testlib
On the right side, you should see Generators, Validators, Checkers and Interactors. That should be almost everything you need.
Thank you!
Another thing I forgot to mention: at the beginning of testlib.h, on the latestFeatures array, you can find some pretty useful features that aren't mentioned in those blogs, such as rnd.partition(useful for, for example, randomly distributing the values of $$$n$$$ over $$$t$$$ test cases while making multitest with a limit on the sum of $$$n$$$) and opts(to make the command line for generators a lot more readable than just numbers one after another)