会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Object_S
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
|
管理
2019年10月3日
AW201 可见的点 (欧拉函数)
摘要: 题目地址易错点:初始化时可以直接忽略1的欧拉函数,以便于前缀和统计.#include#includeusing namespace std;const int MAXN=2e3;int phi[MAXN],sum...
阅读全文
posted @ 2019-10-03 20:07 Object_S
阅读(144)
评论(0)
推荐(0)
编辑
P3912 素数个数
摘要: 题目地址#include#include#includeusing namespace std;const int MAXN=1e8;bool notPrime[MAXN];int notPrimeCnt=0;v...
阅读全文
posted @ 2019-10-03 02:17 Object_S
阅读(93)
评论(0)
推荐(0)
编辑
P1029 最大公约数和最小公倍数问题
摘要: 题目地址#include#include#includeusing namespace std;int gcd(int a,int b){ return b?gcd(b,a%b):a;}int main(){ i...
阅读全文
posted @ 2019-10-03 01:32 Object_S
阅读(81)
评论(0)
推荐(0)
编辑