码迷,mamicode.com
首页 > 其他好文 > 详细

B. Creating the Contest(水题)

时间:2019-04-12 19:22:37      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:++i   水过   test   for   contest   name   col   style   namespace   

直接水过

#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=2e5+10;
int a[maxn];
int n, u,maxx;

int main(){
    cin>>n; u=1;
    for(int i=0;i<n;++i)cin>>a[i];
    for(int i=0;i<n-1;++i){
        if(a[i]*2>=a[i+1]){ ++u; }
        else{     maxx=max(maxx, u);   u=1;      }
    }
    maxx=max(maxx, u);
    cout<<maxx<<endl;
}

 

B. Creating the Contest(水题)

标签:++i   水过   test   for   contest   name   col   style   namespace   

原文地址:https://www.cnblogs.com/ALINGMAOMAO/p/10697862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!