KrK's blog

By KrK, 11 years ago, In English

Hello,

I want to share my a bit weird experience with you guys. I was solving Tavas in Kansas and had some serious problems with debugging my solution. In the end, it was clear that the idea was correct, I just needed to focus on the implementation. I rewrote a small chunk of code and was astonished by the fact that it was equivalent, but it got accepted. I tried to play with my implementations a little. And guess what? I found out that assert() on an obvious condition can make your code work!

Proof: the failed submission and the accepted submission (only with the assert added, where k should be 1).

I generally do not have great knowledge of compilators and stuff like that. But maybe someone has the idea what the hell happened? :D

  • Vote: I like it
  • +86
  • Vote: I do not like it

»
11 years ago, hide # |
 
Vote: I like it +40 Vote: I do not like it

Your code get AC with VC++ compiler. volatile int k = 0; also get AC. So problem is in G++ optimising.

»
11 years ago, hide # |
 
Vote: I like it +78 Vote: I do not like it

Seems like optimization bug. It is funny that -O2 replaced with -O3 makes your code correct.

It is not the first time codeforcers found a g++ bug, try to google like "codeforces g++ bug".

It will be really good to minimize your code and to file an issue in gcc bug-tracker. Good idea is to check your code with tools like valgrind to be sure that it is not an undefined behaviour.

»
11 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

fprintf(stderr, "%d", k); helps. or write something else to STDERR also helps.

link1

»
11 years ago, hide # |
 
Vote: I like it +11 Vote: I do not like it

Can't repeat with g++ (GCC) 4.9.2 20150212 (Red Hat 4.9.2-6) and this test case.

»
11 years ago, hide # |
 
Vote: I like it -83 Vote: I do not like it

Never met any bugs in VC++. What's the purpose of using G++?

»
11 years ago, hide # |
 
Vote: I like it +8 Vote: I do not like it

Damn, feel so unsecure now. IOI uses g++ and most probably with -O2. And it is at least the 2nd g++ bug found by Codeforces. :/

  • »
    »
    11 years ago, hide # ^ |
     
    Vote: I like it +10 Vote: I do not like it

    On IOI they will most likely use the Linux distribution's default GCC, which

    • Was tested to build the numerous distribution's packages
    • Carries a distribution-specific set of patches to fix known problems and regressions

    So you shouldn't worry about it too much.

»
11 years ago, hide # |
 
Vote: I like it +11 Vote: I do not like it

Added one more ticket to gcc issue-tracker: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66096

Can someone try it on other build of g++ 4.9.2 32-bit?

»
7 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Similar experience:

54145878 gives WA On test case 1 and just adding an assert makes it pass the first test case 54146095