Hello everyone, can anyone tell me how to solve this problem (or how to solve this kind of problems) ? 
remove repeated lines
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | adamant | 151 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 144 |
| 5 | errorgorn | 141 |
| 6 | cry | 139 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
Hello everyone, can anyone tell me how to solve this problem (or how to solve this kind of problems) ? 
remove repeated lines
| Name |
|---|



$$$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 \lt =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