Spare Tire(容斥原理)

A sequence of integer {an} can be expressed as:

Now there are two integers n and m. I'm a pretty girl. I want to find all b1,b2,b3 ... bp,that 1≤bi≤n and bi is relatively-prime with the integer m. And then calculate:

But I have no time to solve this problem because I am going to date my boyfriend soon. So can you help me?

输入

For each test case, print the answer of my question(after mod 1,000,000,007).

输出

In the all integers from 1 to 4, 1 and 3 is relatively-prime with the integer 4. So the answer is a1+a3=14.

思路:

推出an的通项公式为an=n*(n+1) (打表找规律)

直接求互质的不好求,正难则反,求sn再减去互质的部分。

an=n*n+n

\sum i^2=n*(n+1)*(2*n+1)/6,     \sum i=n*(n+1)/2;

然后将m分解质因数,由质因数倍数构成的集合即为不互质的部分,因为存在重合的部分,用容斥原理求解

代码:

#include <iostream>
using namespace std;
typedef long long ll;
const ll mod=1e9+7;
int pri[50],idx;//质因数
ll ksm(ll a,ll b)
{
    ll res=1;
    while(b)
    {
        if(b&1) res=(ll)res*a%mod;
        a=(ll)a*a%mod;
        b>>=1;
    }
    return res;
}
ll mul(ll a,ll b)
{
    a%=mod,b%=mod;
    return a*b%mod;
}
void divide(int k)
{
    for(int i=2;i<=k/i;i++)
    {
        if(k%i==0){
            pri[idx++]=i;
            while(k%i==0) k/=i;
        }
    }
    if(k!=1) pri[idx++]=k;
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int n,m;
    while(cin>>n>>m){
        idx=0;
    divide(m);
    ll inv2=ksm(2,mod-2),inv6=ksm(6,mod-2);//2和6的逆元
    ll ans=(mul(n,n+1)*inv2%mod+mul(mul(n,n+1),2*n+1)*inv6%mod)%mod;
    for(int i=1;i<(1<<idx);i++) //容斥原理
    {
        int s=0;
        ll t=1;//用long long 
        for(int j=0;j<idx;j++)
        {
            if(i >> j&1)
            {
                if(t*pri[j]>n)
                {
                    t=-1;
                    break;
                }
                t*=pri[j];
                s++;
            }
        }
        if(t!=-1)
        {   ll cnt=n/t;
            if(s%2) ans-=(t*mul(cnt,cnt+1)%mod*inv2%mod+t*t%mod*mul(mul(cnt,cnt+1),2*cnt+1)%mod*inv6%mod)%mod;
            else ans+=(t*mul(cnt,cnt+1)%mod*inv2%mod+t*t%mod*mul(mul(cnt,cnt+1),2*cnt+1)%mod*inv6%mod)%mod;
            if(ans<0) ans=ans+mod;
        }
    }
    cout<<(ans+mod)%mod<<'\n';
    }
    return 0;
}

总结:

1.一开始t开的是int ,wa的好多发

对于可能会爆int的运算,中间变量都要用long long ;

2.对于求解集合问题,集合是由几个因子决定的,并且存在重合的情况,用容斥原理

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值