hdu 1397 Goldbach's Conjecture
http://acm.hdu.edu.cn/showproblem.php?pid=1397
제목 설명:
Goldbach's Conjecture
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4797 Accepted Submission(s): 1815
Problem Description
Goldbach's Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n = p1 + p2.
This conjecture has not been proved nor refused yet. No one is sure whether this conjecture actually holds. However, one can find such a pair of prime numbers, if any, for a given even number. The problem here is to write a program that reports the number of all the pairs of prime numbers satisfying the condition in the conjecture for a given even number.
A sequence of even numbers is given as input. Corresponding to each number, the program should output the number of pairs mentioned above. Notice that we are interested in the number of essentially different pairs and therefore you should not count (p1, p2) and (p2, p1) separately as two different pairs.
Input
An integer is given in each input line. You may assume that each integer is even, and is greater than or equal to 4 and less than 2^15. The end of the input is indicated by a number 0.
Output
Each output line should contain an integer number. No other characters should appear in the output.
Sample Input
6
10
12
0
Sample Output
1
2
1
제목:
고 드 바 흐 는 짝수 하 나 를 출력 하 는 데 모두 몇 개의 소수 가 고 드 바 흐 를 구성 하 는 지 추측 했다.
문제 풀이:
소수 타 표 생 성 후 시 뮬 레이 션 스 캔.
코드:
#include<stdio.h>
#include<string.h>
#define MM 32769
bool is_prime[MM] = {false};
int n=0;
int init_prime()
{
memset(is_prime,true,sizeof(is_prime));
for(int i=1;i<=MM-1;i++) if(i%2==0) is_prime[i]=false;
for(int i=3;i<=MM/2+1;i++) for(int j=i+i;j<=MM-1;j+=i) if(j<=MM-1) is_prime[j]=false;
is_prime[1]=false;
is_prime[2]=true;
return(0);
}
int main()
{
init_prime();
while(scanf("%d",&n)!=EOF&&n>0)
{
int cnt=0;
for(int i=2;i<=n/2;i++)
{
if(is_prime[i]&&is_prime[n-i]) cnt++;
}
printf("%d
",cnt);
}
return(0);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[BOJ] 2581번 소수<< 문제 클릭! 입력 : 자연수 M, N (M, N은 10,000 이하의 자연수, M은 N보다 작거나 같다) 자연수 M이상 N 이하의 자연수 중 소수를 모두 찾는다. : 첫째 줄에 그 합을, 둘째 줄에 그 중 최솟...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.