CDZSC_2015寒假新人(4)——搜索 L

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

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

思路:打表。暴力。。。。。很多人会觉得1*100000,所以要打100000内素数的表(一开始我也不例外,TLE),其实不是的,因为a/b最小值是0.001。。。。P<10时,p/d肯定小于0.001(p/d>=a/b)。所以需要10000以内就好(可能更少)

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 #define N 10000
 6 bool is_prime[N+1];
 7 int prime[N],k;
 8 void table()
 9 {
10     int i,j;
11     k=0;
12     memset(is_prime,true,sizeof(is_prime));
13     is_prime[0]=false;
14     is_prime[1]=false;
15     for(i=2; i<=N; i++)
16     {
17         if(is_prime[i])
18         {
19             prime[k++]=i;
20             for(j=2*i; j<=N; j+=i)
21             {
22                 is_prime[j]=false;
23
24             }
25         }
26     }
27 }
28 int main()
29 {
30 #ifdef CDZSC_OFFLINE
31     freopen("in.txt","r",stdin);
32 #endif
33     int m,a,b,i,j;
34     table();
35     while(scanf("%d%d%d",&m,&a,&b)&&m!=0&&a!=0&&b!=0)
36     {
37         int max=0,p=2,q=2;
38         double temp=1.0*a/b;
39         for(i=0; i<k; i++)
40         {
41             for(j=i; j<k; j++)
42             {
43                 if(prime[i]*prime[j]>max&&prime[i]*prime[j]<=m&&1.0*prime[i]/prime[j]>=temp&&1.0*prime[i]/prime[j]<=1)
44                 {
45                     p=prime[i];
46                     q=prime[j];
47                     max=prime[i]*prime[j];
48                 }
49             }
50         }
51         printf("%d %d\n",p,q);
52     }
53     return 0;
54 }
时间: 2024-10-05 05:12:26

CDZSC_2015寒假新人(4)——搜索 L的相关文章

CDZSC_2015寒假新人(4)——搜索 G

Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Ignatius被魔王抓走了,有一天魔王出差去了,这可是Ignatius逃亡的好机会. 魔王住在一个城堡里,城堡是一个A*B*C的立方体,可以被表示成A个B*C的矩阵,刚开始Ignatius被关在(0,0,0)的位置,离开城堡的门在(A-1,B-1,C-1)的位置,现在知道魔王将在T分钟后回到城堡,Ignatius每分钟

CDZSC_2015寒假新人(4)——搜索 A

Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and

CDZSC_2015寒假新人(4)——搜索 - P

Description  Parentheses Balance  You are given a string consisting of parentheses () and []. A string of this type is said to be correct: (a) if it is the empty string (b) if A and B are correct, AB is correct, (c) if A is correct, (A ) and [A ] is

CDZSC_2015寒假新人(4)——搜索 N

Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u Description Standard web browsers contain features to move backward and forward among the pages recently visited. One way to implement these features is to use two stacks to

CDZSC_2015寒假新人(4)——搜索 C

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 <= Ki <= N) on every floor.The lift have just two butto

CDZSC_2015寒假新人(4)——搜索 B

Description There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent tiles. But he can't move on red tiles, he can move only

CDZSC_2015寒假新人(4)——搜索 - D

Description You're in space. You want to get home. There are asteroids. You don't want to hit them. Input Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following de

CDZSC_2015寒假新人(4)——搜索 F

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should get out of the labyrinth

CDZSC_2015寒假新人(4)——搜索 H

Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Hiking in the mountains is seldom an easy task for most people, as it is extremely easy to get lost during the trip. Recently Green has decided to go on a hiking