跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2446. Ivan and Powers of Two

    ID: 2452 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>贪心模拟算法思想编程与模拟进阶难度共享题库Codeforces英文题面题目来源题面语言

Ivan and Powers of Two

题目描述

C. Ivan and Powers of Two
time limit per test
0.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 integer v (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 n space-separated integers a1,a2,...,an (0≤ai≤2·109). It is guaranteed that a1a2≤...≤an.

Output

Print a single integer − the answer to the problem.

Examples
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.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2077 题。保留原作者与原赛事署名。