Reminder: in case of any technical issues, you can use the lightweight website m1.codeforces.com, m2.codeforces.com, m3.codeforces.com. ×

Time Complexity and allocated time related confusions

Revision en1, by TaskForce141, 2024-08-20 09:20:00

Hi, I am facing some confusions about the time complexity of the codes we submit. If the time limit per test=1 second,

doesn't that mean if t=3, total 3*1 seconds will be needed at max? I mean maximum 3 seconds in total is available , right?

My submission

According to my calculation, the time complexity of my provided solution is n*log(a_max), where a_max= max(vector a)__

I am confused why it is getting TLE everytime.

And I think I have little knowledge, so asking.

Do enlighten me with your knowledge's lumen.

Thanks

Tags time, c++

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English TaskForce141 2024-08-20 09:20:50 6
en1 English TaskForce141 2024-08-20 09:20:00 672 Initial revision (published)