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

Автор Sederam, история, 17 месяцев назад, По-английски

does anybody know what the problem with this code? (runtime error!!) Your text to link here...

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

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

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

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

https://codeforces.net/blog/entry/70237

Your comparator function cmp currently returns true if the two elements to be compared are equal. C++ requires you to have comparators return false for equal elements. You just need to replace $$$\le$$$ with $$$<$$$ to fix the RTE.

Fixing this gives WA2.