码迷,mamicode.com
首页 > 数据库 > 详细

Codeforces 17A Noldbach problem(数学)

时间:2014-08-30 13:57:29      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:acm   codeforce   数学   

题意 求n以内等于两个连续素数的和加上1的数的个数 n不大于1000




#include<cstdio>  
#include<cmath>  
#include<algorithm>  
using namespace std;  
const int N = 1000;  
int n, k, ans;  
bool isPrime (int a)  
{  
    for (int i = 2; i <= sqrt (a); ++i)  
        if (a % i == 0) return 0;  
    return 1;  
}  
  
int main()  
{  
    int ai = 1, bi = 0, a[N], b[N];  
    a[1] = 2;  
    for (int i = 3; i <= N; ++i)  
        if (isPrime (i))  
        {  
            a[++ai] = i;  
            b[++bi] = a[ai] + a[ai - 1] + 1;  
        }  
    scanf ("%d%d", &n, &k);  
    ans = 0;  
    for (int i = 13; i <= n; ++i)  
        if (isPrime (i) && find (b + 1, b + bi + 1, i) != b + bi + 1)  
            ans++;  
    if (ans >= k) printf ("YES\n");  
    else printf ("NO\n");  
    return 0;  
}  

Nick is interested in prime numbers. Once he read about Goldbach problem. It states that every even integer greater than 2 can be expressed as the sum of two primes. That got Nick‘s attention and he decided to invent a problem of his own and call it Noldbach problem. Since Nick is interested only in prime numbers, Noldbach problem states that at least k prime numbers from 2 to n inclusively can be expressed as the sum of three integer numbers: two neighboring prime numbers and 1. For example, 19 = 7 + 11 + 1, or 13 =5 + 7 + 1.

Two prime numbers are called neighboring if there are no other prime numbers between them.

You are to help Nick, and find out if he is right or wrong.

Input

The first line of the input contains two integers n (2?≤?n?≤?1000) and k (0?≤?k?≤?1000).

Output

Output YES if at least k prime numbers from 2 to n inclusively can be expressed as it was described above. Otherwise output NO.

Sample test(s)
input
27 2
output
YES
input
45 7
output
NO
Note

In the first sample the answer is YES since at least two numbers can be expressed as it was described (for example, 13 and 19). In the second sample the answer is NO since it is impossible to express 7 prime numbers from 2 to 45 in the desired form.







Codeforces 17A Noldbach problem(数学)

标签:acm   codeforce   数学   

原文地址:http://blog.csdn.net/acvay/article/details/38943359

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!