我是靠谱客的博主 娇气棉花糖,最近开发中收集的这篇文章主要介绍Ivan and Powers of Two,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Ivan has got an array of n non-negative integers a1, a2, ..., an. Ivan knows that the array is sorted in the non-decreasing order.

Ivan wrote out integers 2a1, 2a2, ..., 2an on a piece of paper. Now he wonders, what minimum number of integers of form 2b (b ≥ 0) need to be added to the piece of paper so that the sum of all integers written on the paper equalled 2v - 1 for some integerv (v ≥ 0).

Help Ivan, find the required quantity of numbers.

Input

The first line contains integer n (1 ≤ n ≤ 105). The second input line contains nspace-separated integers a1, a2, ..., an (0 ≤ ai ≤ 2·109). It is guaranteed that a1 ≤ a2 ≤ ... ≤ an.

Output

Print a single integer — the answer to the problem.

Example
Input
4
0 1 1 1
Output
0
Input
1
3
Output
3
Note

In the first sample you do not need to add anything, the sum of numbers already equals 23 - 1 = 7.

In the second sample you need to add numbers 20, 21, 22.

题目大意:给你n个数都是2的次方,求最小的2的v次方-1是多少

解题思路:用的是单调队列把,次方重复的累加起来,然后判一下最大次方,在此基础上++,就是v,然后求一下


#include<iostream>  
#include<cstdio>
#include<stdio.h>
#include<cstring>  
#include<cstdio>  
#include<climits>  
#include<cmath> 
#include<vector>
#include <bitset>
#include<algorithm>  
#include <queue>
#include<map>
using namespace std;

long long int n, i, head, tail, a[100005], b[100005], c[100005], ans;
int main()
{
	cin >> n;
	for (i = 1; i <= n; i++)
	{
		cin >> a[i];
	}
	head = 0; tail = -1;
	for (i = n; i >=1; i--)
	{
		while (head<=tail&&a[i]==b[tail])
		{
			a[i]++;
			tail--;
		}
		b[++tail] = a[i];
	}
	cout << b[head] + 1 - (tail - head + 1) << endl;
	
}


最后

以上就是娇气棉花糖为你收集整理的Ivan and Powers of Two的全部内容,希望文章能够帮你解决Ivan and Powers of Two所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部