cf17A Noldbach problem (素数打表)


2-n个数之间,有多少个素数能由相邻素数相加+1,组成。。。


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 Input

Input
27 2
Output
YES
Input
45 7
Output
NO

Hint

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.


#include<bits/stdc++.h>
 using namespace std;
 const int N = 2222;
 int prime[N],pre[N];
 
 bool check(int num)
 {
 	for(int i=2;i*i<=num;i++) 
 	  if(num%i==0) return false;
 	return true;
 }
 
 
 void init()
 {
 	int i,j,cnt;
 	for(i=2;i<=1000;i++) {
 		if(!prime[i])
 		for(j=i+i;j<=1000;j+=i)
 		prime[j]=1;
	 }
	 cnt=0;
	 for(i=2;i<=1000;i++) {
	 	if(!prime[i]) prime[++cnt]=i;
	 }
	 for(i=2;i<=cnt;i++) {
	 	int t=prime[i]+prime[i-1]+1;
	 	if(check(t)) pre[t]=1;
	 }
	 for(i=1;i<=1000;i++) {
	 	pre[i]+=pre[i-1];

	 }
 }
 
 int main()
 {
 	init();
 	int n,k;
 	while(cin>>n>>k) {
 		if(pre[n]>=k) cout<<"YES"<<endl;
 		else cout<<"NO"<<endl;
	 }
	 return 0;
 }
 
 
 
 
 

写法有点蠢....没必要打表



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值