When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

TheHoodyGang's blog

By TheHoodyGang, history, 13 months ago, In English

Will N^(1.5) give TLE for N=2e5 and time is 1 seconds? In genral how many operation can be executed in 1 seconds?

  • Vote: I like it
  • 0
  • Vote: I do not like it

| Write comment?
»
13 months ago, # |
Rev. 2   Vote: I like it +2 Vote: I do not like it

With the CPP you can do 2*10^8 operations per second on average. So you can solve a question with a limit of 10^6 in nlogn time. But be careful, data structures with high constant (like std::set) may cause time limit error on such limit. If you optimize your code using pragma and etc. you can do up to 10^10 operations per second.

  • »
    »
    13 months ago, # ^ |
      Vote: I like it +8 Vote: I do not like it

    Optimizations don't affect the number of operations u can do per second. It only affects the number of operations that you have to do, so it takes less time in total.

    If you are using the same processor, then number of operations per second (or clock speed) is always constant.