1030. 完美数列(25)

1030. 完美数列(25)

给定一个正整数数列,和正整数p,设这个数列中的最大值是M,最小值是m,如果M <= m * p,则称这个数列是完美数列。

现在给定参数p和一些正整数,请你从中选择尽可能多的数构成一个完美数列。

输入格式:

输入第一行给出两个正整数N和p,其中N(<= 105)是输入的正整数的个数,p(<= 109)是给定的参数。第二行给出N个正整数,每个数不超过109

输出格式:

在一行中输出最多可以选择多少个数可以用它们组成一个完美数列。

输入样例:

10 8
2 3 20 4 5 1 6 7 8 9

输出样例:

8

 思路:先排序 再遍历 让每一个元素成为一次最大or最小 若长度超过之前的最大值 则更新长度

注意:10^9^2有可能超过int表示范围 应用long long

#include <iostream>
#include <iomanip>
#include <math.h>
#include <stdio.h>
#include <string>
#include <algorithm>
#include <vector>
#include <map>
using namespace std;

int main(){
    long long n, p;
    long long array[100050];
    cin >> n >> p;
    int count = 1;
    for (int i = 0; i < n; i++)
        cin >> array[i];
    sort(array, array+n);
    for (int i = 0; i<n; i++)
        for (int j = i + count; j<n; j++)
        {
            if (array[j]>array[i] * p)
                break;
            if (j - i + 1>count)
                count = j - i + 1;
        }
    cout << count;

    system("pause");
    return 0;
}

 

posted @ 2017-03-19 21:01  NhdVW0V  阅读(146)  评论(0)    收藏  举报