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

    评论

报告相同问题?

悬赏问题

  • ¥100 c语言,请帮蒟蒻看一个题
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)