博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A - Goldbach's Conjecture
阅读量:4361 次
发布时间:2019-06-07

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

A - Goldbach's Conjecture
Time Limit: 1000MS Memory Limit: 65536K 64bit IO Format: %I64d & %I64u

[]   [Go Back]   []

Description

In 1742, Christian Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following conjecture:
Every even number greater than 4 can be
written as the sum of two odd 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 for all even numbers less than a million.

Input

The input will contain one or more test cases.
Each test case consists of one even integer n with 6 <= n < 1000000.
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
#include 
#include
#include
#include
int dp[500100]= {
0}; int dx[100000]; int find(int l, int r, int v) {
int mid; while( l <= r) {
mid = (l + r ) / 2; if (dx[mid] == v) return 1; else if ( dx[mid] > v) r= mid -1; else l= mid + 1; } return 0; } int main( ) {
int i, j, a, b, k = 0, c, d; dx[0] = 2; k = 1; for ( i = 3; i <= 1000; i += 2 ) {
if (dp[i / 2] == 1) continue; for (j = i * i; j <= 1000000; j += i + i) dp[j / 2] = 1; } for (i = 1; i < ( 500000+1) ; i++) if (dp[i] != 1 ) dx[k++] = i * 2 + 1; int flag = 0; while (scanf("%d",&a), a ) {
for (i = 0; i < k; i++) {
if ( find (0, k-1, a-dx[i]) ) {
printf("%d = %d + %d\n",a, dx[i], a-dx[i]); break; } else if ( dx[i] > a) {
printf("Goldbach's conjecture is wrong.\n"); break; } else if ( i == k-1) {
printf("Goldbach's conjecture is wrong.\n"); break; } } } return 0; }

转载于:https://www.cnblogs.com/tangcong/archive/2011/07/22/2113732.html

你可能感兴趣的文章
JS邮箱验证-正则验证
查看>>
Quartz 2D绘图
查看>>
JS Fetch
查看>>
EJB 笔记
查看>>
【delete】Android自定义控件(四) 自定义ImageView动态设置ImageView的高度
查看>>
HDUOJ------(1230)火星A+B
查看>>
Servlet
查看>>
基于jquery地图特效全国网点查看代码
查看>>
【leetcode】867 - Transpose Matrix
查看>>
selenium动作链
查看>>
敏捷外包工程系列之二:人员结构(敏捷外包工程,敏捷开发,产品负责人,客户价值)...
查看>>
《设计你的人生》的部分经典语录
查看>>
mustache多次渲染和多个赋值
查看>>
《Flutter 实战》开源电子书
查看>>
Python 键盘记录
查看>>
HDU 1381 Crazy Search
查看>>
PLSQL
查看>>
修改计算机名
查看>>
Android-Activity的启动模式
查看>>
禅道项目管理系统整合Selenium IDE的思路
查看>>