Calling Extraterrestrial Intelligence Again(谢庆皇)

来源:互联网 发布:淘宝后小样都是假的吗 编辑:程序博客网 时间:2024/06/05 04:51

Problem Description
A message from humans to extraterrestrial intelligence was sent through the Arecibo radio telescope in Puerto Rico on the afternoon of Saturday November 16, 1974. The message consisted of 1679 bits and was meant to be translated to a rectangular picture with 23 * 73 pixels. Since both 23 and 73 are prime numbers, 23 * 73 is the unique possible size of the translated rectangular picture each edge of which is longer than 1 pixel. Of course, there was no guarantee that the receivers would try to translate the message to a rectangular picture. Even if they would, they might put the pixels into the rectangle incorrectly. The senders of the Arecibo message were optimistic.
We are planning a similar project. Your task in the project is to find the most suitable width and height of the translated rectangular picture. The term "most suitable" is defined as follows. An integer m greater than 4 is given. A positive fraction a / b less than or equal to 1 is also given. The area of the picture should not be greater than m. Both of the width and the height of the translated picture should be prime numbers. The ratio of the width to the height should not be less than a / b nor greater than 1. You should maximize the area of the picture under these constraints.

In other words, you will receive an integer m and a fraction a / b. It holds that m > 4 and 0 < a / b < 1. You should find the pair of prime numbers p, q such that pq <= m and a / b <= p / q <= 1, and furthermore, the product pq takes the maximum value among such pairs of two prime numbers. You should report p and q as the "most suitable" width and height of the translated picture.

 

Input
The input is a sequence of at most 2000 triplets of positive integers, delimited by a space character in between. Each line contains a single triplet. The sequence is followed by a triplet of zeros, 0 0 0, which indicated the end of the input and should not be treated as data to be processed.

The integers of each input triplet are the integer m, the numerator a, and the denominator b described above, in this order. You may assume 4 < m <= 100000 and 1 <= a <= b <= 1000.

 

Output
The output is a sequence of pairs of positive integers. The i-th output pair corresponds to the i-th input triplet. The integers of each output pair are the width p and the height q described above, in this order.

Each output line contains a single pair. A space character is put between the integers as a delimiter. No other characters should appear in the output.

 

Sample Input
5 1 2
99999 999 999
1680 5 16
1970 1 1
2002 4 11
0 0 0
 

Sample Output
2 2
313 313
23 73
43 43
37 53

有用信息:

a.给定整数m,a,b(4 < m <= 100000 and
  1 <= a <= b <= 1000)
b.需要找到两个数(不妨设为p,q)满足以下条件:
      p,q均为质数;
    p*q<=m;
    a/b <= p/q <= 1;
c.输出所有满足以上条件的p,q中乘积最大的一对p,q
算法搜索:

1.典型的搜索
从所有可能的p,q中寻找满足条件的一对
2.p,q的要求
p,q均为质数,且p<=q<=100000;
3.按上述思想流程应为:
a.从1—100000中搜出质数
b.两层循环,试遍所有的组合(p,q可能相等)
c.每种组合去判断是否符合条件,如是,将p*q与当前最大值比较,判断,保存

面临问题:

超时!
从1—100000的质数(9592个)运算约为1e+8。
因此,如不加以分析简化此题无法在规定时间内出解

深入分析:

p,q的范围其实可在2—50000(why?)
然而,这是最小的范围吗?
考虑大于10000的某个质数,不妨设为Q,另一个质数为P,则:
如果P<10,P/Q<0.001
如果P>10,P*Q>100000
而考虑到a,b的取值范围(1<=a<=b<=1000)
可知min(a/b)=0.001
同时,要求: p*q<=m<=100000
所以无论如何质数都不能超过10000
搜索时的技巧:

搜索顺序很重要。建议从大往小搜
(num:质数的个数 )
  for (i=num-1;i>=0;i--)
              for (j=i;j<=num-1;j++)
                   ……
       
注意剪枝:
If ( prime[j]>m || prime[j]*prime[i]>m || ( (double)prime[i]/prime[j])<s )  ……

#include<iostream>#include<string>using namespace std;const int MAX=10000;bool is[MAX];int prime[MAX];int pri()   //获得10000以内的素数。{    memset(is,true,sizeof(is));int k=0;   for(int i=2;i<=10000;i++){        if(is[i]){   prime[k++]=i;           for(int j=i+i;j<MAX;j+=i)       is[j]=false;}}   return k;}int main(){int m,a,b,num;num=pri();while(cin>>m>>a>>b){       if(m==0)   break;   double max1=1,max2=1;   double s=(double)a/(double)b;       for(int i=num-1;i>=0;i--)  //从大到小搜索。   {   for(int j=i;j<num;j++)  //j 增大。   {   if(prime[i]>m||prime[i]*prime[j]>m||(double)prime[i]/prime[j]<s)  //剪枝   {break;}   if((double)prime[i]/prime[j]>=s) //符合情况,记录保存prime[i],prime[j];   {   if(max1*max2<prime[i]*prime[j])   {   max1=prime[i];       max2=prime[j];   }   }   }   }   cout<<max1<<" "<<max2<<endl;}return 0;}

原创粉丝点击