图雀社区 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已经溢出了

    评论

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能