Regarding some cases not being passed

Sir I am getting TLE in 2 cases. Below is the code, i tried dynamic allocation too, but still.

hello @punetha.anmol001

add these lines just in the start of int main and then try

  ios_base::sync_with_stdio(false);
    cin.tie(NULL);

for details of these lines pls read about fast io in c++

Tried it too, still two cases are showing TLE.

its becuase ur code has quadratic time complexity .
try to solve it using Dequeue in O(n)

check this-> link

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.