PATAdvanceLevel(甲级)1085
题目链接:1085 Perfect Sequence (25分)
题目描述如下:
作者 CAO, Peng
单位 浙江大学
代码长度限制 16 KB
时间限制 200 ms
内存限制 64 MB
1085 Perfect Sequence (25分)
Given a sequence of positive integers and another positive integer p. The sequence is said to be a perfect sequence if M≤m×p where M and m are the maximum and minimum numbers in the sequence, respectively.
Now given a sequence and a parameter p, you are supposed to find from the sequence as many numbers as possible to form a perfect subsequence.
Input Specification:
Each input file contains one test case. For each case, the first line contains two positive integers N and p, where N (≤10^5) is the number of integers in the sequence, and p (≤10^9) is the parameter. In the second line there are N positive integers, each is no greater than 10^9.
Output Specification:
For each test case, print in one line the maximum number of integers that can be chosen to form a perfect subsequence.
Sample Input:
10 8
2 3 20 4 5 1 6 7 8 9
Sample Output:
8
题目大意:
完美序列 :序列的最大值为M,最小值为m,给定一个p值,满足M≤m*p的序列称为完美序列。
求出给定序列中能组成完美序列的最大可能的元素个数。
输入
输入序列中的整数个数N,给定元素p和N个整数。
输出
能组成完美序列的最大元素个数。
解题思路:
本题主要的思路就是从给定的序列中找出尽量多的数组成完美序列,不过需要注意的组成完美序列的数不必按给定序列的顺序。
本题的解法应该有很多,本人的解法如下:
1、先对输入序列进行排序
2、以最小的数作为完美序列的最小值,求出此时能组成完美序列的元素个数和第一个不满足完美序列的数的下标,因为此时的序列有可能不是最大的。
3、求出能满足刚才找出元素的最小值下标,以此为新的完美序列的最小值求出此时的最大元素个数,若此时序列长度大于刚才的长度则更新长度值,一直重复直到序列末尾。
注意采用暴力穷举的方法会超时
本题的C/C++代码如下所示
代码如下:
1 |
|
总结
理解了完美序列的定义和题目的意思就能很快的做出此题。
谢谢阅读,希望对你有所收获。