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

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

Can't understand the diagnostics to this submission for the problem.

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

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

This type of diagnostic error (the one in your submission) usually happens in my case whenever I try to access a non-allocated memory space (like trying to access an element not in an array), I can see a lower_bound in your code, have you checked for it's edge cases, like when it throws last?

PS — I am only a noob so take this with a grain of salt

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

    Seems fine to me....have used the same thing many times.....but am not much of an expert myself.....

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

You do binary search on a not sorted array.

Error: elements in iterator range [__first, __last) are not partitioned by 
the value __val.
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Still getting WA for this, would really appreciate if someone could point out what is wrong?