Ivan and Powers of Two

本题描述了Ivan面对一个非递减序列,通过一系列操作使得纸上的数之和为2的幂次减一的问题。玩家需利用集合数据结构来模拟整个过程,找到所需补充的2的幂次数目的最小值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 Ivan and Powers of Two
Time Limit:500MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

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
4
0 1 1 1
Output
0
Input
1
3
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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值