Calling Extraterrestrial Intelligence Again

来源:互联网 发布:黑莓9930安装软件 编辑:程序博客网 时间:2024/05/22 09:40

Calling Extraterrestrial Intelligence Again

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4673    Accepted Submission(s): 2448


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 299999 999 9991680 5 161970 1 12002 4 110 0 0
 

Sample Output
2 2313 31323 7343 4337 53
 

Source
Asia 2002, Kanazawa (Japan)
 题意:
题中的大意是是求两个素数的最大乘积,满足题中给的一些条件
分析 :本题思路比较简单,但是难点在于优化,否则会超时,对于p来说,由于p<q;所以p应该在sqrt(m)之内,对于q来说,只需找到q的最大值,由于0<=a/b<p/q<=1;
1<=a<=b<=1000;所以当a=1时,b等于1000时,q最大,即q最大为10000;
代码 :
#include<stdio.h>
#include<math.h>
 int d[100001];
// int sushu(int x)     //超时 !!! 
// {
//     int i,j,t=1;
//     for(i=2;i<=sqrt(x*1.0);i++)
//     if(x%i==0)
//     {
//     return 0;
//     } 
//     return 1;
// }
 void  sushu()        //打表 
 {
  int i,j;
  for(i=1;i<100000;i++)
  d[i]=1;
  for(i=2;i<100000;i++)
  {
  if(d[i]==1)
  {
  for(j=2*i;j<100000;j+=i)
  d[j]=0;
  }
  }
 }
 int main()
 {
     int m,a,b,p,q,t;
     sushu();
     int max,i,j;
    while(scanf("%d%d%d",&m,&a,&b)) 
  {
      if(m==a&&a==b&&a==0)
      break;
      t=sqrt(1.0*m); max=0;
      p=q=0;
      for(i=2;i<=t;i++)
      {
          for(j=i;j<=10000;j++)
          {
              if((!d[i])||(!d[j])||(i*j>m)||(a*1.0/b>i*1.0/j))
              {
              continue;
              }
              else {
                  if(i*j>max)
                  {
                      max=i*j;
                      p=i;
                      q=j;
                  }
              }
          }
      }
      printf("%d %d\n",p,q);
  }
    return 0;
 } 
 


0 0
原创粉丝点击