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

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

1085. Perfect Sequence (25)

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

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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 濉溪县| 霍林郭勒市| 松潘县| 岑巩县| 金溪县| 内丘县| 珲春市| 乌兰浩特市| 辽宁省| 拜城县| 衡阳县| 济源市| 龙岩市| 礼泉县| 鄂托克前旗| 克拉玛依市| 和硕县| 尚志市| 怀宁县| 武陟县| 惠安县| 延吉市| 夏邑县| 浦北县| 海口市| 临安市| 长沙市| 阳西县| 井研县| 高邮市| 大名县| 察隅县| 富锦市| 天峻县| 永城市| 双牌县| 遵义市| 岳池县| 滨海县| 峨边| 密山市|