Does Codeforces Online Judge allow us to use Boost Library for C++ ?
It would help and ease the issue of big integers...
Or what is the alternative for that ? Obviously I can handle using mod at times...but any other easy alternative?
Any suggestion is much appreciated :)
Thanks :)
Easy alternative is to use
Python
.Copy bigint implementation from other people's codes. Really fast multiplication is important, for example.
Are you allowed to copy other's people's code? Doesn't it get caught by the plagiarism checker?
No, doing it is similar to use inbuilt libraries as codeforces rules unless you use code that wasn't created before the contest started.
As much as you're allowed to plagiarize the C++ standard library.