首页 > 代码库 > hdu 4135 容斥原理
hdu 4135 容斥原理
又搞了一道容斥原理。
题目:求【1,n】区间对m互质的数有多少个?
#include<iostream> #include<vector> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; #define LL __int64 const int maxn = 1e5+8; LL a[maxn],cn,numpri[maxn],vis[maxn],dis[maxn]; LL n,m; LL f[maxn]; void getprim(){ cn = 0; for(LL i=2;i<10000;i++){ if(!dis[i]){ numpri[cn++] = i; for(LL j=2*i;j<=10000;j+=i) dis[j] = 1; } } } LL getans(LL Max,LL d){ vector <int > v; LL sum = 0; for(LL j=0;j<cn&&numpri[j] * numpri[j] <=d;j++){ if(d % numpri[j] == 0){ v.push_back(numpri[j]); while(d % numpri[j] == 0)d /= numpri[j]; } } if(d!=1)v.push_back(d); int len = v.size(); //cout << len <<endl; for(int j=0;j<(1<<len);j++){ LL op =0,ans = 1; for(int k=0;k<len;k++){ if((1<<k)&j){ op++; ans*=v[k]; } } if(op&1)sum-= Max/ans; else sum += Max/ans; } return sum; } int su = 0; int main(){ LL T; LL a,b,c; scanf("%I64d",&T); getprim(); while(T--){ cin >> a>>b>>c; // cout << getans(b,c)<<endl; printf("Case #%d: %I64d\n",++su,getans(b,c) - getans(a-1,c)); } }
hdu 4135 容斥原理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。