vermish77's blog

By vermish77, history, 3 hours ago, In English

I think my solution has a time complexity of O(nlogn) as I am doing binary search on answer but it still gives TLE, why is it giving TLE . This is the problem link:- https://codeforces.com/contest/126/problem/B

This is my solution:- https://codeforces.com/contest/126/submission/271378723

Please help in this

  • Vote: I like it
  • -1
  • Vote: I do not like it

»
2 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

The function f works in "n square" complexity in the worst case for comparing deque again and again.