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

Автор KrumlaLumla, история, 5 лет назад, По-английски

The problem is 1207D number of permutations. https://codeforces.com/contest/1207/problem/D Here is my code https://codeforces.com/contest/1207/submission/62746660 Its showing runtime error.

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

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

This thing has been said many times already on codeforces. Just replace all $$$\le$$$ with $$$<$$$ in your comparators (func and func2). (It's called strict weak ordering which STL algorithms expect, you may google more about it)

BTW, you have a really bizzare coding style. You almost never need to use unsigned data types to solve a problem as almost all problems have constraints in such a way that the values fit in a signed data types. Also, thinking whether to use unsigned or signed data type might also take a lot of time and is also prone to errors. So, please avoid using unsigned data types especially for solving CF problems.