图雀社区 2016-03-03 14:13 采纳率: 0%
浏览 1409

求助一到素数题/uva,543

Problem A : Goldbach's Conjecture
From: UVA, 543Submit

Time Limit: 3000 MS
In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following conjecture:
Every number greater than 2 can be written as the sum of three prime numbers.
Goldbach cwas considering 1 as a primer number, a convention that is no longer followed. Later on, Euler re-expressed the conjecture as:
Every even number greater than or equal to 4 can be expressed as the sum of two prime numbers.

For example:

8 = 3 + 5. Both 3 and 5 are odd prime numbers.
20 = 3 + 17 = 7 + 13.
42 = 5 + 37 = 11 + 31 = 13 + 29 = 19 + 23.
Today it is still unproven whether the conjecture is right. (Oh wait, I have the proof of course, but it is too long to write it on the margin of this page.)

Anyway, your task is now to verify Goldbach's conjecture as expressed by Euler for all even numbers less than a million.

Input The input file will contain one or more test cases.
Each test case consists of one even integer n with .
Input will be terminated by a value of 0 for n.

Output For each test case, print one line of the form n = a + b, where a and b are odd primes. Numbers and operators should be separated by exactly one blank like in the sample output below. If there is more than one pair of odd primes adding up to n, choose the pair where the difference b - a is maximized.
If there is no such pair, print a line saying ``Goldbach's conjecture is wrong."

Sample Input

820420
Sample Output

8 = 3 + 520 = 3 + 1742 = 5 + 37

Miguel A. Revilla
1999-01-11
新手写代码:
#include
#include
#include
#define N 1000
using namespace std;
int main()
{
int a[N];
int n;
memset(a,0,sizeof(a));
int flag1=0,k=1;
a[0]=3;
for(int i=5;i<N;i++)
{
for(int j=2;j*j<=i;j++)
{
if(i%j==0)
{
flag1=1;
break;
}
}
if(!flag1)
{
a[k++]=i;
}
flag1=0;
}
while((scanf("%d",&n))!=EOF&&(n!=0))
{
int flag2=0;
for(int i=0;a[i]<=n;i++)
{
for(int j=i+1;j<=k;j++)
{
if((n-a[i])==a[j])
{
flag2=1;
printf("%d = %d + %d\n",n,a[i],a[j]);
break;
}
}
if(flag2)
break;
}
if(!flag2)
printf("Goldbach's conjecture is wrong.");
}
return 0;
}

  • 写回答

2条回答

  • u52983610 2016-03-04 16:04
    关注

    你的算法不能改了,没办法实现,因为你的算法是先获得一个全是素数的数组,976696 = 53 + 976643,这种test case已经溢出了

    评论

报告相同问题?

悬赏问题

  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大