See this... How the hell does creating a 1e5 ish sized array 1e4 times pass?? I think he's probably hacked Codeforces or something...
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
See this... How the hell does creating a 1e5 ish sized array 1e4 times pass?? I think he's probably hacked Codeforces or something...
Название |
---|
I think its fine. That is within the allowed number of iterations if you consider total tests.
1e9 should not pass in 2 seconds
Maximum number of iterations is ~63245 because $$$(N+1)*N/2<MAX$$$ .
So in total it will be $$$6*(1e8)$$$ which is fine.
Even if was a pure 1e9, it still depends on other constants. There are huge differences between performing 1e9 additions and 1e9 prints, and the former even fits in like 0.5s, whilte the latter can't run even in 10s. Pushing to a vector is a little more heavier, but 6e8 still barely fits in 2s.
it's not 1e9 iterations as it's increasing each time like this 1 3 6 10 15 21 27 so it's not 1e9 so it passed
For every test case a new array of at max 1e4 will be created. Which is anyways fine. What is the problem here?
because there are 1e4 testcases, and push_back is slow...
Eliminated.
How did you do it? Can you tell me what testcase you used? I did the maximal one (1 1000000000, repeated 10000 times) and that did not TLE...
It's about luck. You just need to spam hacks with slightly different values every time. Execution time is unstable enough to make 100~200 ms differences with many many tries, while different test cases make barely any effect on it on average (as long as you keep $$$t=10^4$$$).
But surely you can't spam these hacks in a div2 where you get -50 every time you fail?
Yes, it will most likely survive if it were a Div. 2.