Блог пользователя vagi

Автор vagi, история, 4 года назад, По-английски

This is about yesterday's Div2 contest Problem B. For reference, here's my code which got RE on system test 7. Finally, I fixed my code and got AC. Read the blunder I made. I hope you people handle it elegantly the next time you encounter this. Pay attention to the last part of the code which includes the two for loops.

Wrong code

The problem here is while outputting the answer, I write the loop's end condition as i < o.size()-1 and i < e.size()-1 . Now, size() returns an unsigned int (In this case, an unsigned 0) and when I subtract 1 from it, like this i < e.size()-1, I get a huge number instead of -1 which I expected I'd get. The loop runs for quite a long time instead of never running at all.

Now, to fix this there are 3 ways you can do so.

  1. Typecast the returned value into int like this (int)(e.size()-1).
  2. Store this returned value from size method into a variable like this int sz = e.size().
  3. As HideBehind mentioned, the simplest way is to write it as i+1 < e.size().

Here's my working code showing both the methods.

Got AC with it

I felt like a dumbo after RE on system tests, fixed it, and then thought to inform you all guys (my first blog).

PS: Making a mistake like this deals some serious damage on ratings XD

  • Проголосовать: нравится
  • +18
  • Проголосовать: не нравится

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by vagi (previous revision, new revision, compare).

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Interesting

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +11 Проголосовать: не нравится

That's why you should use $$$ i + 1 < e.size() $$$ instead of $$$ i < e.size() - 1 $$$

By doing that you can avoid problems with unsigned numbers described above.

»
4 года назад, # |
  Проголосовать: нравится +4 Проголосовать: не нравится

Even if not empty it returns an unsigned int.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Yes, I mentioned that on being empty it returns an unsigned 0. No doubt, it returns an unsigned int always.

»
4 года назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Yeah, as other people has mentioned it always returns an unsigned value. The only reason it works in the other case is because unsigned 1-1 is still nonnegative. There is nothing special about the return type when it is empty.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    Yeah, I framed the sentence incorrectly. Maybe I shoud rephrase it.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by vagi (previous revision, new revision, compare).

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

My solution is also a little bit same. Did I do it correct? https://codeforces.com/contest/1370/submission/84467854 It passed the system tests but the method is similar and i didn't typecast anything.

»
4 года назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

You can compile your source with the flag -Wall to issue warnings from the compiler when such comparisons (signed / unsigned) are made.