When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

farmersrice's blog

By farmersrice, history, 6 years ago, In English

http://codeforces.com/contest/963/submission/37451734

Not sure where my code has a bug, but I submitted 3 times and it's always the same error on test 48.

I could not decipher this part of the message:

Diagnostics detected issues [cpp.clang++-diagnose]: =================================================================
==6068==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x14e00978 at pc 0x00dc63fd bp 0x1355f754 sp 0x1355f750
READ of size 4 at 0x14e00978 thread T0

I would appreciate any help. Thanks!

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

| Write comment?
»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Hmm, I fixed some possible string out of bounds issues but it's still failing

http://codeforces.com/contest/963/submission/37452849

»
6 years ago, # |
  Vote: I like it +16 Vote: I do not like it

Is your address 6969 or something that you need Address Sanitizer

»
6 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Subtracting k from possible.size() can do bad things, since possible.size() is an unsigned int.

  • »
    »
    6 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    It worked! Thanks!

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +2 Vote: I do not like it

      "#define SZ(x) ((int)(x).size())" and you're good to go never needing to care about these stupid unsigned sizes again

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it
  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Local arrays with variable length are illegal in C++.

    int n = 5;
    char c[n]; // Compilation error
    
    const int n = 5;
    char c[n]; // OK
    

    But in G++11 it's sometimes correct on small lengths. Two key words there are sometimes and small. I can't surely say is it UB or not, but it's surely wrong C++ code.

    Three options: 1) Use global array with big enought const length;
    2) Use stl-vector;
    3) Use new-statement to construct array.

    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +26 Vote: I do not like it

      Variable length arrays are an extension supported by GCC.

      I'd like to point out a possible misunderstanding of what a language extension is. Compiler authors don't just go like "here's an extension, and it sometimes works, but sometimes doesn't so take care". If it's supported by the compiler, it should work as documented for the intended uses, same as all other language features do.

      Also, the name of the extension may be confusing. Actually, the memory is allocated at the point of declaration. If we change the vaule of n afterwards, the array itself does not change in any way.

      • »
        »
        »
        »
        5 years ago, # ^ |
          Vote: I like it +15 Vote: I do not like it

        Thanks for GCC extensions, now I know something new. Though I still stick with standartized C++.

        But what ASan complains about if it is not non-const length array?

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

        However it's JUST an extension and has many bugs. See PR16694. I just hate VLA personally.

        • »
          »
          »
          »
          »
          5 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          There's only 11 issues related to variable-length arrays, and not all of them are bugs? I'd say they are in an OK shape then.

          To me, it looks like most of the actual bugs are triggered by bad user code. Well, that's what bad code does: it does not work, one way or another. This time it's a compiler's fault, but whatever.

          Of course, if you don't like a feature, you don't have to use it. C++ is rich with features, plenty to choose form.

          • »
            »
            »
            »
            »
            »
            5 years ago, # ^ |
              Vote: I like it +23 Vote: I do not like it

            In my opinion the usage of VLA in C++ is exactly an instance of bad user code :). It's not standardized so other compilers may reject it and give me an CE.

            It depends on how to define "bad user code". I (and GCC) believe int a[2][n] is bad user code (unless n is a macro expanding to some constexpr). See PR58646. But in a new programmer's view it may be "perfectly well".

            Once a student really blamed me (problem setter) because his usage of VLA in C++ triggered a compiler bug. I tried to reason with him but he just insisted that his program was "perfectly well". I was irritated.

»
5 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

http://codeforces.com/contest/1041/submission/45163366

Can Somebody Help me with this code.

I dont Know Whats Wrong..

»
4 years ago, # |
  Vote: I like it -14 Vote: I do not like it

I'm having the same error: https://codeforces.com/problemset/submission/266/78521764 Any ideas why?

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Change char children[n]; to string children(n, '0'); (gets ACed). Try and not mingle with C-style strings and C++ strings at the same time.

  • »
    »
    4 years ago, # ^ |
    Rev. 2   Vote: I like it 0 Vote: I do not like it

    Make children array size n and children[n] = '\0' before assigning it to string. See: 78524312

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

https://codeforces.com/contest/1242/submission/85228209 Can anyone help with this? I am getting runtime error

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    It seems after S.erase() in some deep recursive call you have invalid iterator in outer dfs(). I changed set<int> S; for map<int, bool> S; + corresponding management, and it worked.