#include <iostream>
using namespace std;
#define MAX 202000
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
bool pocket[MAX];
for(int i = 0; i < MAX; i++)
pocket[i]=false;
int n,cur;
int max=-1;
cin>>n;
while(n--)
{
cin>>cur;
while(1)
{
if(!pocket[cur])
break;
pocket[cur]=false;
cur++;
}
pocket[cur]=true;
//cerr<<cur<<endl;
if(cur>max)
max = cur;
}
cout<<max<<'\n';
return 0;
}
/*
5
3 4 1 3 3
*/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #include <iostream> using namespace std; #define MAX 202000 int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); bool pocket[MAX]; for(int i = 0; i < MAX; i++) pocket[i]=false; int n,cur; int max=-1; cin>>n; while(n--) { cin>>cur; while(1) { if(!pocket[cur]) break; pocket[cur]=false; cur++; } pocket[cur]=true; //cerr<<cur<<endl; if(cur>max) max = cur; } cout<<max<<'\n'; return 0; } /* 5 3 4 1 3 3 */ |
English