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.me/contest/126/problem/B
This is my solution:- https://codeforces.me/contest/126/submission/271378723
Please help in this
The function f works in "n square" complexity in the worst case for comparing deque again and again.
Thanks, overlooked it, I think it will need to be solved using KMP then.