博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ - 2739 Sum of Consecutive Prime Numbers
阅读量:4005 次
发布时间:2019-05-24

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

Some positive integers can be represented by a sum of one or more consecutive prime numbers. How many such representations does a given positive integer have? For example, the integer 53 has two representations 5 + 7 + 11 + 13 + 17 and 53. The integer 41 has three representations 2+3+5+7+11+13, 11+13+17, and 41. The integer 3 has only one representation, which is 3. The integer 20 has no such representations. Note that summands must be consecutive prime numbers, so neither 7 + 13 nor 3 + 5 + 5 + 7 is a valid representation for the integer 20. 
Your mission is to write a program that reports the number of representations for the given positive integer.
Input
The input is a sequence of positive integers each in a separate line. The integers are between 2 and 10 000, inclusive. The end of the input is indicated by a zero.
Output
The output should be composed of lines each corresponding to an input line except the last zero. An output line includes the number of representations for the input integer as the sum of one or more consecutive prime numbers. No other characters should be inserted in the output.
Sample Input
2317412066612530
Sample Output
11230012

题意:题意很简单,无非就是给出一个数用连续素数和表示的最多可能。遇0题目结束。

分析:首先看题目给你的数字,本身是不是素数;其次咱们从后往前找,直到找到2这个最小的质数,看看在这个过程中有几种可能;最后将结果输出。

那么直接上代码:

用筛法去查找素数,无疑是最简单快速的。

#include
int b[10001]={0};void num(){ b[0]=b[1]=1; for(int i=2;i<10001;i++) { if(b[i]==0) { for(int j=2*i;j<10001;j+=i) b[j]=1; } }}int main(){ num(); int n; while(scanf("%d",&n)&&n) { int s=0; for(int i=n;i>=2;i--) { int ok=0; if(b[i]!=0) continue; for(int j=i;j>=2;j--) { if(b[j]==0&&j==n) { s++; break; } else { if(b[j]==0) ok+=j; if(ok==n) { s++; break; } else if(ok>n) break; } } } printf("%d\n",s); } return 0;}

转载地址:http://tkzfi.baihongyu.com/

你可能感兴趣的文章
简单Linux C线程池
查看>>
内存池
查看>>
输入设备节点自动生成
查看>>
opencv test code-1
查看>>
eclipse 导入先前存在的项目
查看>>
GNU hello代码分析
查看>>
Qt继电器控制板代码
查看>>
busybox passwd修改密码
查看>>
wpa_supplicant控制脚本
查看>>
rfkill: WLAN hard blocked
查看>>
gstreamer相关工具集合
查看>>
arm 自动升级脚本
查看>>
RS232 四入四出模块控制代码
查看>>
gstreamer插件之 videotestsrc
查看>>
autoupdate script
查看>>
linux 驱动开发 头文件
查看>>
/etc/resolv.conf
查看>>
container_of()传入结构体中的成员,返回该结构体的首地址
查看>>
linux sfdisk partition
查看>>
ipconfig,ifconfig,iwconfig
查看>>