UVA1210(连续素数和)。

继续寻找水题。。。

把所有的素数存进一个数组,然后用递归的方法做比较简单。

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstring>
 4 #include <cstdio>
 5 #include <cstdlib>
 6 #include <cmath>
 7
 8 using namespace std;
 9 const int maxn = 100000;
10 int a[maxn];
11 int c[maxn];
12 int cnt = 0;
13 void prime()
14 {
15     int i,j,k;
16     for(i=0;i<maxn;i++)
17         a[i]=i;
18     a[0]=0;
19     a[1]=0;
20     for(i=2;i<maxn;i++)
21     {
22         for(j=2*i;j<maxn;j+=i)
23         {
24             a[j]=0;
25         }
26     }
27     j=0;
28     for(i=0;i<maxn;i++)
29     {
30         if(a[i])
31             c[j++]=a[i];
32     }
33 }
34 void Calculate(int *c,int n,int k)
35 {
36     int i,j;
37     int t=n;
38     for(i=k;c[i]<=n;i++)
39     {
40         t-=c[i];
41         if(t==0)
42         {
43             cnt++;
44             k++;
45             Calculate(c,n,k);
46         }
47         if(t<0&&t+c[i]>0)
48         {
49             k++;
50             Calculate(c,n,k);
51         }
52     }
53 }
54 int main()
55 {
56     prime();
57     int i,j,k,n;
58     while(scanf("%d",&n)&&n)
59     {
60         Calculate(c,n,0);
61         printf("%d\n",cnt);
62         cnt = 0;
63     }
64     return 0;
65 }
时间: 2024-10-10 07:34:01

UVA1210(连续素数和)。的相关文章

UVa 1210 连续素数之和

https://vjudge.net/problem/UVA-1210 题意: 输入整数n,有多少种方案可以把n写成若干个连续素数之和? 思路: 先素数打表,然后求个前缀和. 1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 #include<cstring> 5 #include<queue> 6 using namespace std; 7 typedef long lon

POJ 2739 Sum of Consecutive Prime Numbers-数论-(连续素数和)

题意:求有多少种连续素数和是n,n的范围:2~10000 分析:预处理出10000内的素数,然后每输入一个n就用二重循环找出sum==n的个数,因为素数约为1200个,O(n^2)不会超时 代码: #include<iostream> #include<string> #include<cstring> #include<algorithm> #define max(a,b) a>b?a:b using namespace std; int n,pri

习题10-6 连续素数之和 UVa1210

1.解题思路:点击打开链接 2.解题思路:本题要求寻找连续个素数相加为n的个数.由于n的范围不大, 因此可以事先打表.计算好所有的连续和的个数,最后直接输出即可. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm> #include<string> #include<sstream> #include<set> #include<vecto

【素数】 poj 2739 一个数能有多少种连续素数相加方案

简单题 素数打表   根据数据量  用n2算法遍历  开一个save[k]素数存前k个素数和即可. #include <iostream> #include <cstdio> #include <memory.h> #include <cmath> using namespace std; const int maxn=10002; int pri[maxn+1]; int save[2000+1]; int s[2000+1]; void make_pri

UVA1210Sum of Consecutive Prime Numbers(素数打表 + 连续和)

题目链接 题意:输入一个数n (2 <= n <= 10000) 有多少种方案可以把n写成若干个连续素数之和 打出10000之内的素数表,然后再打出每个可能得到的和的方案数的表 1 #include <iostream> 2 #include <cstring> 3 #include <algorithm> 4 #include <cstdio> 5 using namespace std; 6 const int Max = 10000; 7

POJ3518_Prime Gap【素数】【水题】

Prime Gap Time Limit: 5000MSMemory Limit: 65536K Total Submissions: 8499Accepted: 4983 Description The sequence of n ? 1 consecutive composite numbers (positive integers that are not prime and not equal to 1) lying between two successive prime number

POJ 2739 Sum of Consecutive Prime Numbers(素数)

http://poj.org/problem?id=2739 题意: 给你一个10000以内的自然数X,然后问你这个数x有多少种方式能由连续的素数相加得来? 分析: 首先用素数筛选法把10000以内的素数都找出来按从小到大保存到prime数组中. 然后找到数X在prime中的上界, 如果存在连续的素数之和==X, 那么一定是从一个比X小的素数开始求和(不会超过X的上界),直到和sum的值>=X为止. 所以我们暴力枚举10000以内的所有可能的素数相加和的起始点i,然后求连续素数的和,看看当前以p

poj2739尺取法+素数筛

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 intege

Sum of Consecutive Prime Numbers(素数打表+尺取)

Description 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