Submission #632300

#TimeUsernameProblemLanguageResultExecution timeMemory
632300ggohLanguages (IOI10_languages)C++14
34 / 100
3038 ms3248 KiB
#include<bits/stdc++.h> #include "grader.h" using namespace std; int V[56][65536]; void excerpt(int *E) { int l=0,maxi=-1,maxind; int e[65536]={}; for(int i=0;i<100;i++) { e[E[i]]++; if(e[E[i]]>maxi) { maxi=e[E[i]]; maxind=E[i]; } } for(int j=0;j<56;j++) { maxi=-1; int maxj; for(int i=1;i<65536;i++) { if(V[j][i]>maxi) { maxi=V[j][i];maxj=i; } } if(maxj==maxind) { l=j; break; } } int o=0; for(int i=0;i<100;i++) { int c=0; for(int j=0;j<56;j++) { if(V[j][E[i]]){c++;o=j;} } if(c==1) { l=o; break; } } int L=language(l); for(int i=0;i<100;i++) { V[L][E[i]]++; } }

Compilation message (stderr)

lang.cpp: In function 'void excerpt(int*)':
lang.cpp:30:5: warning: 'maxj' may be used uninitialized in this function [-Wmaybe-uninitialized]
   30 |     if(maxj==maxind)
      |     ^~
lang.cpp:30:5: warning: 'maxind' may be used uninitialized in this function [-Wmaybe-uninitialized]
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...