国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1085. Perfect Sequence (25)

2019-11-14 11:39:17
字體:
來源:轉載
供稿:網友

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 (<= 105) is the number of integers in the sequence, and p (<= 109) is the parameter. In the second line there are N positive integers, each is no greater than 109.

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

//法1:#include<cstdio>#include<algorithm>using namespace std;const int maxn=100010;int a[maxn];bool cmp(int a,int b){ return a<b;}int main(){ int n,p; scanf("%d%d",&n,&p); for(int i=0;i<n;i++){ scanf("%d",&a[i]); } sort(a,a+n,cmp); int k=0,maxinum=0; for(int i=0;i<n;i++){ long long mp=(long long)a[i]*p;//因為a[i]和p都可能達到10^9,所以mp可達到10^18,因此用long long,用int則有一個測試點錯誤 while(a[k]<=mp&&k<n){ k++; } maxinum=max(maxinum,k-i); } printf("%d/n",maxinum);}//法2:#include<cstdio>#include<algorithm>using namespace std;const int maxn=100010;int a[maxn];int binarySearch(int i,int n,long long x){ if(a[n-1]<=x) return n; int l=i+1,r=n-1,mid; while(l<r){ mid=(l+r)/2; if(a[mid]<=x){ l=mid+1; }else{ r=mid; } } return l;//由于while結束時l==r,因此返回l或者r都行 }int main(){ int n,p; scanf("%d%d",&n,&p); for(int i=0;i<n;i++){ scanf("%d",&a[i]); } sort(a,a+n); int ans=1; for(int i=0;i<n;i++){// int j=upper_bound(a+i+1,a+n,(long long)a[i]*p)-a;//upper_bound是運用二分原理,查找a數組中第一個大于a[i]*p的元素的指針 //因此這里也可以自己寫一個binarySearch(int i,long long x)函數 int j=binarySearch(i,n,(long long)a[i]*p); ans=max(ans,j-i); } printf("%d/n",ans); return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 新河县| 天柱县| 宁武县| 文化| 澎湖县| 志丹县| 广河县| 陆川县| 平乡县| 安西县| 手游| 武强县| 邮箱| 宣城市| 台州市| 西贡区| 田东县| 巨鹿县| 江都市| 前郭尔| 南康市| 吉木乃县| 永顺县| 海晏县| 虹口区| 泰来县| 江西省| 岳阳市| 蓝田县| 靖江市| 长白| 平舆县| 二手房| 玉溪市| 通山县| 特克斯县| 泗洪县| 武强县| 奇台县| 车险| 扎囊县|