#include <cstdio> #define MAXA 220000 //#define DEBUG 1 /* * Zadanie: ska * Autor rozwiązania: Jan Horodecki */ int main(){ int n,t[MAXA],a,maxw=0; scanf("%d",&n); for(int i=0;i<=MAXA;i++){ t[i]=0; } for(int i=0;i<n;i++){ scanf("%d",&a); t[a]++; } //#ifdef DEBUG // for(int i=0;i<=15;i++){ // printf("%d ",t[i]); // } // printf("\n"); //#endif for(int i=0;i<=MAXA;i++){ //#ifdef DEBUG // for(int j=0;j<=15 && i<=15;j++){ // printf("%d ",t[j]); // } // if(i<=15)printf("<< %d\n",i); //#endif if(t[i]>1){ t[i+1]+=t[i]/2; t[i]=t[i]%2; } if(t[i]==1)maxw=i; } printf("%d",maxw); 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 44 45 | #include <cstdio> #define MAXA 220000 //#define DEBUG 1 /* * Zadanie: ska * Autor rozwiązania: Jan Horodecki */ int main(){ int n,t[MAXA],a,maxw=0; scanf("%d",&n); for(int i=0;i<=MAXA;i++){ t[i]=0; } for(int i=0;i<n;i++){ scanf("%d",&a); t[a]++; } //#ifdef DEBUG // for(int i=0;i<=15;i++){ // printf("%d ",t[i]); // } // printf("\n"); //#endif for(int i=0;i<=MAXA;i++){ //#ifdef DEBUG // for(int j=0;j<=15 && i<=15;j++){ // printf("%d ",t[j]); // } // if(i<=15)printf("<< %d\n",i); //#endif if(t[i]>1){ t[i+1]+=t[i]/2; t[i]=t[i]%2; } if(t[i]==1)maxw=i; } printf("%d",maxw); return 0; } |