Hello everyone, can anyone tell me how to solve this problem (or how to solve this kind of problems) ?
remove repeated lines
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3993 |
2 | jiangly | 3743 |
3 | orzdevinwang | 3707 |
4 | Radewoosh | 3627 |
5 | jqdai0815 | 3620 |
6 | Benq | 3564 |
7 | Kevin114514 | 3443 |
8 | ksun48 | 3434 |
9 | Rewinding | 3397 |
10 | Um_nik | 3396 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 155 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
10 | nor | 152 |
Hello everyone, can anyone tell me how to solve this problem (or how to solve this kind of problems) ?
remove repeated lines
Название |
---|
$$$gcd(x,y)$$$ equals to the multiplication of all the common factors between $$$x$$$ and $$$y$$$.
$$$gcdHBD(x,y)$$$ equals to the multiplication of the first $$$k$$$ factors of $$$x$$$ and the last $$$k$$$ factors of $$$y$$$ .
so $$$gcd(x,y)$$$ = $$$gcdHBD(x,y)$$$ iff the first $$$k$$$ factors of $$$x$$$ are common factors in $$$y$$$ and the last $$$k$$$ factors of $$$y$$$ are common in $$$x$$$.
so $$$x$$$ and $$$y$$$ should have at least $$$2k$$$ factors.
now let's get the maximum value of $$$k$$$ in the worst case: $$$gcd(x,y)$$$ <= $$$n$$$ and $$$n<=10^5$$$ in the worst case all the factors will be equals to $$$2$$$. so $$$k$$$ <= $$$log2(10^5)/2$$$ , $$$k$$$ <= $$$8$$$.
so if $$$k$$$ > $$$8$$$ the answer is $$$0$$$.
so what to do if $$$k$$$ <= $$$8$$$ ?
for each integer $$$x$$$ $$$[1,n]$$$
1- get it's factors.
2- remove the first $$$k$$$ factors from it ( that are common in $$$x$$$ and $$$y$$$ )
3- backtrack in these remaning factors to get the last $$$k$$$ factors ( that are common in $$$x$$$ and $$$y$$$ ).
4- make another backtrack to get another factors that are not in $$$x$$$ so can't affect the $$$gcd$$$ ( on primes from $$$2$$$ to $$$r$$$ where $$$r$$$ is the lowest factor in $$$y$$$ )
code : https://ideone.com/61h70N
Amazing solution, I worked on another approach which seems like it's more optimizable somehow. It works as follows:
"bad" factors ensures that besides $$$g$$$, there are no extra common factors between $$$x$$$, and $$$y$$$.
Intuitively, it seems the third backtracking does a lot of repeated work for many $$$x$$$, so this is where I see the improvement.
I haven't been able to prove the complexity, but it passes my trivial stress test.
https://ideone.com/4lgcAd
I think we have the same approach with different implementation way