Can anynone please give me prove or proper explanation, Why this loop run at most logn time ?
code
№ | Пользователь | Рейтинг |
---|---|---|
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 |
Can anynone please give me prove or proper explanation, Why this loop run at most logn time ?
for (int i = 2; i <= n; i++) { // will run O(log n) times at max
if (__gcd(i, n - 1 - i) == 1) {
cout << i << ' ' << n - 1 - i << ' ' << 1 << '\n';
break;
}
}
Название |
---|
In the first log(n) numbers you will find a prime that is not divisible by n.
Because at iteration i, we know that n -1 must be a multiple of
lcm(2..i-1)
. For a big enough i (such as 40),this number is collosal, so any number given at input couldn't be a multiple. Also,lcm(2..i)
grows exponentially, so we could say that the inverse function of that would behave likelog(n)
, so that is why the complexity is O(logn)let's assume that we have a prime p.
if n-p-1 is not divisible by p then the gcd(n-p-1,p) will equal 1.
and the sum will be((n-p-1)+(p)+(1)) equal n definitely.
then we need to find a prime p that (n-p-1)%p!=0 .
we know that (n-p-1)%p≡(n-1)%p — p%p.
so we need to find a value for p that (n-1)%p!=0
so we can try every value of the first 10 primes because a number less than 10^9 can't have more than 9 distinct prime factors.(the multiplication of the first 10 primes (2*3*5*7*....*29=6469693230) which is greater than 10^9).
so we need to loop over first 10 primes only.
and because this code is not looping over primes it will at worst case loop till i=29 (which is 10th prime)