博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
紫书 习题 10-17 UVa 11105 (筛法)
阅读量:6502 次
发布时间:2019-06-24

本文共 685 字,大约阅读时间需要 2 分钟。

类似于素数筛的思想去做,不然暴力会超时而且还要判重

#include
#include
#include
#define REP(i, a, b) for(int i = (a); i < (b); i++)using namespace std;const int MAXN = 1123456;int vis[MAXN];vector
prime;int f[MAXN];void init(){ memset(vis, -1, sizeof(vis)); for(int i = 5; i < MAXN; i += 4) for(int j = 5; i * j < MAXN; j += 4) { if(vis[i] == -1 && vis[j] == -1) vis[i * j] = 1; else vis[i * j] = 0; } int sum = 0; REP(i, 1, MAXN) { if(i % 4 == 1 && vis[i] == 1) sum++; f[i] = sum; }}int main(){ init(); int n; while(~scanf("%d", &n) && n) printf("%d %d\n", n, f[n]); return 0;}

 

转载于:https://www.cnblogs.com/sugewud/p/9819473.html

你可能感兴趣的文章
device platform 相应的表
查看>>
php des 加密解密实例
查看>>
【Mac】Mac键盘实现Home, End, Page UP, Page DOWN
查看>>
实战使用Axure设计App,使用WebStorm开发(1) – 用Axure描述需求
查看>>
安德鲁斯----多媒体编程
查看>>
swift版的元组
查看>>
[zz]在linux中出现there are stopped jobs 的解决方法
查看>>
Delphi下实现全屏快速找图找色 一、数据提取
查看>>
查询表字段信息
查看>>
logback与Log4J的区别
查看>>
关于机器学习的最佳科普文章:《从机器学习谈起》
查看>>
咏南新CS三层开发框架
查看>>
dxFlowChart运行时调出编辑器
查看>>
TDiocpCoderTcpServer返回数据记录有条数限制的问题
查看>>
NET Framework 3.0 (WinFX) RTM发布
查看>>
图片拼接器
查看>>
C++ TinyXml操作(含源码下载)
查看>>
读取swf里所有类定义
查看>>
DOWNLOAD 文件
查看>>
rp2833 网卡以及串口与接插件位置关系
查看>>