How to find the number of pairs of integers (x,y) such that gcd(x,y) = 1?
n<=1e6
x<y<=n
time limit = 2s
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 160 |
5 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Name |
---|
Euler's totient function is the function $$$\phi(n) =$$$ the number of numbers $$$\le n$$$ and coprime to $$$n$$$. Sum that for all $$$y$$$ from $$$2$$$ to $$$n$$$
Hint: DP.
Solution: Let us solve the more general problem: how do you find the number of pairs ($$$p[d]$$$) of integers $$$(x, y)$$$ with a gcd of $$$d$$$?
Let $$$cnt[x]$$$ mean the number of times $$$x$$$ occurs as a divisor of a number in $$$a$$$. We would calculate this by iterating over all $$$a_i$$$ and finding its divisors, incrementing $$$cnt[d]$$$ for each divisor (in $$$O(n \sqrt[3]{n}$$$)
What if $$$d=\max{a_i}$$$? Then the answer is $$$\frac{cnt[d] \cdot (cnt[d]-1)}{2}$$$. Otherwise, let us initialize the answer for some $$$x<\max{a_i}$$$ to $$$\frac{cnt[x] \cdot (cnt[x]-1)}{2}$$$. This is almost correct, but will also count pairs with a gcd of $$$2x$$$, $$$3x$$$, $$$4x$$$, and so on. So we will subtract $$$p[2x]$$$, $$$p[3x]$$$, $$$p[4x]$$$. This will take $$$O(n \log{n})$$$ time.
Here's my code for Counting Coprime Pairs on CSES. Hope this helped!
It can be done fast using mobius inversion: https://codeforces.net/blog/entry/53925