#include <stdio.h> using namespace std; int n, m, v, g; bool c; int tab[201740]; int getint() { c=true; v=0; while(c) { c=false; g=getchar_unlocked(); if((g>47)&&(g<58)) { v=(v<<3)+(v<<1)+g-48; c=true; } } return v; } int main() { n=getint(); for(int i=0; i<n; ++i) { ++tab[getint()]; } for(int i=1; i<201740; ++i) { tab[i]+=tab[i-1]>>1; if(tab[i]) { m=i; } } printf("%d", m); return 0; }
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 | #include <stdio.h> using namespace std; int n, m, v, g; bool c; int tab[201740]; int getint() { c=true; v=0; while(c) { c=false; g=getchar_unlocked(); if((g>47)&&(g<58)) { v=(v<<3)+(v<<1)+g-48; c=true; } } return v; } int main() { n=getint(); for(int i=0; i<n; ++i) { ++tab[getint()]; } for(int i=1; i<201740; ++i) { tab[i]+=tab[i-1]>>1; if(tab[i]) { m=i; } } printf("%d", m); return 0; } |