Can anyone explain why my code 188948183 for 1775B - Gardener and the Array is TLE? Doesn't it work for O(∑k[i])?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Can anyone explain why my code 188948183 for 1775B - Gardener and the Array is TLE? Doesn't it work for O(∑k[i])?
Название |
---|
vector a[100005]; and int k[114514]; causes tle because n <= 1e5 so you are doing 2e5 * 1e5 operations
I have corrected it: https://mirror.codeforces.com/contest/1775/submission/188960544. Yes, your code indeed works in $$$O(\sum k_i)$$$, but there are too many minor issues in your code:
cin.tie(0) -> sync_with_stdio(0)
. That is the key reason.#define int long long
I know many people like this, butlong long
is slower than int. Here,int
is enough. I once get TLE usinglong long
, and get AC usingint
.if(s[a[i][j]]==1) { f=1; }
: I suggest you to add a break:if(s[a[i][j]]==1) { f=1; break; }
. This optimization also works forif(f == 0) {ans = "Yes\n";}
.Thanks for giving me a chance to improve my debugging ability.