CAPIMOV (JAN long) TLE

LINK TO Question : https://www.codechef.com/problems/CAPIMOVE

Link to solution : https://www.codechef.com/viewsolution/14418625

Getting TLE in 2nd and 3rd subtask while my approach is same as mentioned in editorial

Your code is correct and gives the correct output.

However, before removing the P[i] from the set, you are doing a binary search over the set to check whether it exists in the set or not. Its not required as the function set.erase() takes care of that.

I removed the lines where you do the binary search, and your code got accepted.

Also, since this problem has a lot of input, its better to use fast input and output (I/O).

Here is your Accepted (AC) code.

https://www.codechef.com/viewsolution/14463447

1 Like

THANKS !!! It worked .
But why using binary search i am geting a TLE???