Ivan and Powers of Two

来源:互联网 发布:转炉煤气 优化控制 编辑:程序博客网 时间:2024/05/16 19:39
 Ivan and Powers of Two
Time Limit:500MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit Status

Description

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 a1 ≤ a2 ≤ ... ≤ an.

Output

Print a single integer — the answer to the problem.

Sample Input

Input
40 1 1 1
Output
0
Input
13
Output
3

Hint

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.


用set模拟一下,每次读取x,判断x是否存在,如果存在那么删去x,插入x+1
需要注意的是,上面所说的过程需要一直循环进行,如果x+1也存在,那么删去x+1,再看x+2,如果x+2也存在,那么删去x+2.。。。直到x+i不存在,插入x+i
0 0
原创粉丝点击