↵
I did the above question in complexity of O(nlogn) and using vectors . I didn't knew why this happened as the with the given constraints my solution in nlogn should run! ↵
↵
But on changing vectors to array format ,it worked!!!↵
↵
↵
[soln1]((https://mirror.codeforces.com/contest/1284/submission/141427353))↵
↵
↵
[soln2](https://mirror.codeforces.com/contest/1284/submission/141427385)↵
↵
As you can see there is only one difference of conversion of vector maxel to an array↵
↵
It would be kind if someone can tell how can this happen and where can i safely use a vector instead of an array.↵
↵
thanks↵
↵
↵
↵
↵
↵