3603.Ivan and Powers of Two

Time Limit: 1s Memory Limit: 256MB

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 \ge 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 \ge 0).

Help Ivan, find the required quantity of numbers.

Input Format(From the terminal/stdin)

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

Output Format(To the terminal/stdout)

Print a single integer - the answer to the problem.

Sample Input 1

Copy
4
0 1 1 1
 \n
 · · · \n

Sample Output 1

Copy
0
 \n

Sample Input 2

Copy
1
3
 \n
 \n

Sample Output 2

Copy
3
 \n

Hints

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.

Submit

请先 登录

© 2025 FAQs