In last night AtCoder Beginner Contest, my submission for problem D received a Compile Error verdict using GCC (link). That very same code (besides including some library manually because Clang doesn't have bits/stdc++.h
) got accepted when I used Clang (link).
More on the error, I tried to read the error message and it seemed to be an error about std::set
. However the message was too long for me to either understand it or google it (man I hate C++ error messages).
Error message is included in the submission link but if anyone's interested here it is
Can anyone give me some insights on this problem?