博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
杭电1239--Calling Extraterrestrial Intelligence Again
阅读量:5837 次
发布时间:2019-06-18

本文共 4222 字,大约阅读时间需要 14 分钟。

Calling Extraterrestrial Intelligence Again

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 4964    Accepted Submission(s): 2608

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
 

 

Source
 

 

Recommend
Eddy   |   We have carefully selected several similar problems for you:            
 
//AC:
1 #include 
2 #include
3 //const int INF = 100000 ; 4 double shu[100000] ; 5 int i, j, time, num[100000]; 6 void biao(int n) // 找到2~m 范围内所有素数 ; 7 { 8 memset(num, 0, sizeof(num)) ; 9 for(i=2; i<=n; i++)10 {11 if(num[i] == 0)12 {13 for(j=2*i; j<=n; j+=i)14 {15 num[j] = 1 ;16 }17 }18 }19 time = 0 ;20 for(i=2; i<=n; i++)21 {22 if(num[i] == 0)23 shu[time++] = i ;24 }25 }26 int main()27 {28 int m, a, b ;29 while(~scanf("%d %d %d", &m, &a, &b))30 {31 if(m == 0 && a == 0 && b == 0)32 break ;33 double max = -1, q, p ;34 double temp = a * 1.0 / b ;35 36 biao(m) ;37 38 for(i=time-1; i>=0; i--) // → 。 。← 据说很重要 ; 39 {40 for(j=i; j<=time-1; j++)41 {42 if(shu[j]*shu[i] <= m && (shu[i]/shu[j] <= 1 && shu[i]/shu[j] >= temp )&& shu[i]* shu[j] > max)43 { max = shu[i] * shu[j]; q = shu[i]; p = shu[j]; } 44 } 45 } 46 47 printf("%d %d\n", (int)q, (int)p) ;48 }49 return 0 ;50 }

 

转载于:https://www.cnblogs.com/soTired/p/4670776.html

你可能感兴趣的文章
直播源码开发视频直播平台,不得不了解的流程
查看>>
Ubuntu上的pycrypto给出了编译器错误
查看>>
聊聊flink的RestClientConfiguration
查看>>
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
《写给大忙人看的java se 8》笔记
查看>>
倒计时:计算时间差
查看>>
Linux/windows P2V VMWare ESXi
查看>>
Windows XP倒计时到底意味着什么?
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>
java中回调函数以及关于包装类的Demo
查看>>
maven异常:missing artifact jdk.tools:jar:1.6
查看>>
终端安全求生指南(五)-——日志管理
查看>>
Nginx 使用 openssl 的自签名证书
查看>>