AcWing 890. 能被整除的数

AcWing 890. 能被整除的数

(容斥原理)1到6内 被2、3整除的数 6/2+6/3-6/(2*3)

#include <iostream>
using namespace std;
const int N=20;
typedef long long LL;//1e9*1e9 爆int
int p[N];
int main()
{
    int n,m;
    cin>>n>>m;
    for(int i=0;i<m;i++)cin>>p[i];
    int res=0;
    for(int i=1;i< 1<<m;i++)//位运算状态压缩 m==2使 三种情况01 10、11分别表示选一个、两个
    {
        int cnt =0,t=1;//t乘积 cnt乘了多少个质数
        for(int j=0;j<m;j++)
            if(i >> j & 1)
            {
                cnt++;
                if((LL)t*p[j]>n)//当前乘积大于n 标记一下
                {
                    t=-1;
                    break;
                }
                t*=p[j];
            }
        
        if(t!=-1)
        {
         if(cnt%2)res+=n/t;//选了奇数个质数就加起来 (6/2+6/3)
             else res-=n/t;//偶数个质数 -6/(2*3)
        }
    }
    cout<<res<<endl;
    return 0;
}

AcWing 890. 能被整除的数

上一篇:C# List分组


下一篇:C#-GroupBox包含控件,如何获取这些控件的名称