数论
x_1023
这个作者很懒,什么都没留下…
展开
-
BZOJ 2301 [HAOI2011]Problem b - 莫比乌斯反演+容斥
#include<iostream> #include<cstring> #include<cstdio> #include<cstdlib> #include<algorithm>using namespace std;const int maxn=100005;int n,cnt,k; bool is[maxn]; long long pre[maxn]; long long prime[max原创 2017-08-17 10:50:11 · 244 阅读 · 0 评论 -
BZOJ 2818 Gcd - Euler函数/莫比乌斯反演
考察内容:Euler函数 题意:求Σ(1 分析: 若gcd(i,j)=p,将i与j同除以p,则gcd(i/p,j/p)=1,而i,j最大值为n,则在p的情况下即为求i/p(i 注意开long long不然会炸 #include #include #include #include #include using namespace std; const原创 2017-08-17 00:45:44 · 239 阅读 · 0 评论