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

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

I was trying to solve this problem. Here my solution which got TLE. So i copied the exact author's solution in Java but it's still getting TLE. solution

Can anyone tell me whats happening here?

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

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

It's all about Arrays.Sort(), use another method for that.

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

    Thank you for helping me. The code ran fine after i replaced it with Egor's method. I still didn't understand why Arrays.sort() was inefficient here given it is an inbuilt java method .