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

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

The solution that got AC :

The solution that got compilation error :

Both of the codes are exactly same, I'm getting compilation error in the below one and AC in the above one

I just replaced long long by int wherever possible and got an AC

Can anyone please tell what exactly is happening ?

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

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

Replace make_pair(i,-1) with make_pair(i,-1ll), because make_pair(i,-1) produce std::pair<long long, int>, but you need std::pair<long long, long long>, which can be produced by make_pair(i,-1ll).

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

    Done

    It worked

    Thanks