5 条题解
-
2
P2398 GCD SUM
题意:
求
思路:
- - 暴力枚举 -
- - 考虑枚举 -
对于,有
而我们不能重复计算,所以的个数为:
本题枚举 累计的贡献即可,可以使用前缀和优化区间查询
参考代码:
#include <bits/stdc++.h> using namespace std; #define int long long #define endl '\n' const int N = 1e5 + 5; int n, ans; int pri[N], tot; int phi[N], sum[N]; bitset<N> p; inline void getPrimes(int lim) { p.set(); p[0] = p[1] = false; phi[1] = 1; for (int i = 2; i <= n; i++) { if (p[i]) pri[++tot] = i, phi[i] = i - 1; for (int j = 1; j <= tot && i * pri[j] <= lim; j++) { p[i * pri[j]] = false; if (i % pri[j] == 0) { phi[i * pri[j]] = phi[i] * pri[j]; break; } else phi[i * pri[j]] = phi[i] * phi[pri[j]]; } } for (int i = 1; i <= n; i++) sum[i] = sum[i - 1] + phi[i]; } signed main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; getPrimes(n); for (int i = 1; i <= n; i++) ans += (sum[n / i] * 2 - 1) * i; cout << ans << endl; }
信息
- ID
- 1272
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 9
- 标签
- 递交数
- 10
- 已通过
- 10
- 上传者