最小公倍数之和(莫比乌斯反演P3911)

本文介绍了如何使用C++编程语言解决洛谷网站上的一个题目,涉及到计算给定范围内数的最小公倍数之和。通过预处理求出素数分解和欧拉函数,有效地解决了这个问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

路径:

P3911 最小公倍数之和 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

思路:

代码:

 #define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
using namespace std;
const int N = 5e4 + 100;
#define LL long long
const LL mod = 998244353;
int  cn, pre[N], su[N], mu[N], n;
LL F[N];
LL ans;
string s;
void into()
{
    mu[1] = su[1] = su[0] = 1;
    for (int i = 2; i <N; i++)
    {
        if (!su[i]) pre[++cn] = i, mu[i] = -1;
        for (int j = 1; j <= cn && (LL)pre[j] * i <N; j++)
        {
            su[pre[j] * i] = 1;
            if (i % pre[j] == 0) break;
            mu[pre[j] * i] = -mu[i];
        }
    }
}
int main() {
    cin >> n;
    into();
    int ma = 0;
    for (int i = 1; i <= n; i++)
    {
        int x;
        cin >> x;
        ma = max(ma, x);
        for (int i = 1; i * i <= x; i++)
        {
            if (x % i == 0) 
            {
                F[i] += x;
                if (i * i != x) F[x / i] += x;
            }
        }
    }
    for (int d = 1; d <=ma; d++)
    {
        LL cnt = 0;
        for (int x = d; x <= ma; x += d)
            if (mu[x / d]) cnt += mu[x / d] * F[x] * F[x];
        ans += cnt / d;
    }
    cout << ans << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值