AtCoder AGC038 C-LCMs 题解
Posted st1vdy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AtCoder AGC038 C-LCMs 题解相关的知识,希望对你有一定的参考价值。
题目链接:https://agc038.contest.atcoder.jp/tasks/agc038_c?lang=en
题意:给定一个数组,求这个数组中所有数对的LCM之和。
分析:网上看到了很多反演的解法,但是本题也可以通过埃氏筛在(O(nlnlnn))的复杂度下解决。大致做法就是根据(a_i leq 1000000),我们得到(gcd(a_i, a_j) leq 1000000),于是可以通过枚举gcd来解决本题。实现参考代码,埃氏筛的思路就是求出gcd的值在([1, 1000000])范围内的所有(pair<a_i, a_j>)的乘积之和,并去重,最后每项再乘逆元即可。
AC代码:
#pragma GCC target("avx")
#pragma GCC optimize(3)
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define SIZE 1000100
#define rep(i, a, b) for (long long i = a; i <= b; ++i)
#define int long long
using namespace std;
void io() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); }
const int mod = 998244353;
int n, inv[SIZE] = { 0,1 }, cnt[SIZE], tp, maxx = 0, ans[SIZE], res = 0;
signed main() {
io(); cin >> n;
rep(i, 1, n) {
cin >> tp;
cnt[tp]++;
maxx = max(maxx, tp);
}
rep(i, 2, maxx) inv[i] = (mod - mod / i) * inv[mod % i] % mod;
for (int i = maxx; i; --i) { //求出gcd为i的所有pair的乘积之和
int s1 = 0, s2 = 0;
for (int j = i; j <= maxx; j += i) {
s1 = (s1 + cnt[j] * j % mod) % mod;
s2 = (s2 + cnt[j] * j % mod * j % mod) % mod;
}
ans[i] = (s1 * s1 % mod - s2 + mod) % mod;
// s1 - s2 的作用是使得gcd为j的pair对数为 cnt * (cnt - 1)
for (int j = i + i; j <= maxx; j += i) {
ans[i] = (ans[i] - ans[j] + mod) % mod;
//去重,删除gcd为ik (k > 1)的pair
}
}
rep(i, 1, maxx) { //计算 ans[i] / i % mod
res = (res + ans[i] * inv[i] % mod) % mod;
}
cout << res * inv[2] % mod; //枚举了两遍gcd,res / 2
}
以上是关于AtCoder AGC038 C-LCMs 题解的主要内容,如果未能解决你的问题,请参考以下文章
AtCoder Grand Contest 038 简要题解
题解-AtCoder-agc006C Rabbit Exercise
题解-Atcoder_agc005D ~K Perm Counting