1e8? 5e8? 1e9? I seriously don't know so can someone kindly help me please? (Im still a newbie)
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
1e8? 5e8? 1e9? I seriously don't know so can someone kindly help me please? (Im still a newbie)
Название |
---|
idk maybe more than 3 ig
I'm pretty sure that in typical Competitive Programming, about $$$10^7$$$ or $$$10^8$$$ operations can be run in a second. So, for example, if you had a code that runs in $$$O(n^2)$$$ time, then your maximum value for $$$n$$$ would be like $$$10^4$$$.
Depends upon compiler optimizations, in c++ you can run upto 10^7 instructions in a second.
1e8 Upper Bound.
In c++, absolutely 4 * 1e8
5e8, if your code has very good constant factor and use applicable pragmas maybe 1e9
I use C and my program can run up to 1e9*1.5 if I don't use slow operations(such as "/","*","sqrt",etc)
then why do $$$1 \le n \le 10^9$$$ solutions TLE when their time limit is $$$\ge 1$$$ second?
"very good constant factor and use applicable pragmas"
sometimes it even accepts 2e9 solutions with 1 second time limit also, https://mirror.codeforces.com/contest/1999/submission/275109409 , you can checkout this question and its hacks in which many people submitted O(t*n) solution where t is 1e4 and n is 2e5 but still hacks didn't work on them
It can go all the way to 1e10, if the operations take less time, compared to others.