Creating the Contest

Creating the Contest

Problem

You are given a problemset consisting of n problems. The difficulty of the i-th problem is a i a_i ai. It is guaranteed that all difficulties are distinct and are given in the increasing order.

You have to assemble the contest which consists of some problems of the given problemset. In other words, the contest you have to assemble should be a subset of problems (not necessary consecutive) of the given problemset. There is only one condition that should be satisfied: for each problem but the hardest one (the problem with the maximum difficulty) there should be a problem with the difficulty greater than the difficulty of this problem but not greater than twice the difficulty of this problem. In other words, let a i 1 , a i 2 , … , a i p a_{i_1},a_{i_2},…,a_{i_p} ai1,ai2,,aip
be the difficulties of the selected problems in increasing order. Then for each j from 1 1 1 to p − 1 p−1 p1 a i j + 1 ≤ a i j ⋅ 2 a_{i_{j+1}}≤a_{i_j}⋅2 aij+1aij2 should hold. It means that the contest consisting of only one problem is always valid.

Among all contests satisfying the condition above you have to assemble one with the maximum number of problems. Your task is to find this number of problems.

Input

The first line of the input contains one integer n n n ( 1 ≤ n ≤ 2 ⋅ 1 0 5 ) (1≤n≤2⋅10^5) (1n2105) — the number of problems in the problemset.

The second line of the input contains n integers a 1 , a 2 , … , a n a_1,a_2,…,a_n a1,a2,,an ( 1 ≤ a i ≤ 1 0 9 ) (1≤a_i≤10^9) (1ai109) — difficulties of the problems. It is guaranteed that difficulties of the problems are distinct and are given in the increasing order.

Output

Print a single integer — maximum number of problems in the contest satisfying the condition in the problem statement.

Examples

Input
10
1 2 5 6 7 10 21 23 24 49
Output
4
Input
5
2 10 50 110 250
Output
1
Input
6
4 7 12 100 150 199
Output
3

Note

Description of the first example: there are 10 valid contests consisting of 1 problem, 10 valid contests consisting of 2 problems ( [ 1 , 2 ] , [ 5 , 6 ] , [ 5 , 7 ] , [ 5 , 10 ] , [ 6 , 7 ] , [ 6 , 10 ] , [ 7 , 10 ] , [ 21 , 23 ] , [ 21 , 24 ] , [ 23 , 24 ] ) ([1,2],[5,6],[5,7],[5,10],[6,7],[6,10],[7,10],[21,23],[21,24],[23,24]) ([1,2],[5,6],[5,7],[5,10],[6,7],[6,10],[7,10],[21,23],[21,24],[23,24]), 5 valid contests consisting of 3 problems ( [ 5 , 6 , 7 ] , [ 5 , 6 , 10 ] , [ 5 , 7 , 10 ] , [ 6 , 7 , 10 ] , [ 21 , 23 , 24 ] ) ([5,6,7],[5,6,10],[5,7,10],[6,7,10],[21,23,24]) ([5,6,7],[5,6,10],[5,7,10],[6,7,10],[21,23,24]) and a single valid contest consisting of 4 problems ( [ 5 , 6 , 7 , 10 ] ) ([5,6,7,10]) ([5,6,7,10]).

In the second example all the valid contests consist of 1 problem.

In the third example are two contests consisting of 3 problems: [ 4 , 7 , 12 ] [4,7,12] [4,7,12] and [ 100 , 150 , 199 ] [100,150,199] [100,150,199].

Code

// #include <iostream>
// #include <algorithm>
// #include <cstring>
// #include <sstream>//整型转字符串
// #include <stack>//栈
// #include <deque>//堆/优先队列
// #include <queue>//队列
// #include <map>//映射
// #include <unordered_map>//哈希表
// #include <vector>//容器,存数组的数,表数组的长度
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
const ll N=2e5+10;
ll a[N];

int main()
{
    ll n;
    cin>>n;

    ll mx=0,j=0;
    for(ll i=1;i<=n;i++)
    {
        cin>>a[i];
        if(a[i-1]*2>=a[i]) mx=max(mx,i-j);
        else j=i;
    }

    cout<<mx+1<<endl;
    return 0;
}
  • 7
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Pretty Boy Fox

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值