Submission #129225

#TimeUsernameProblemLanguageResultExecution timeMemory
129225mraronQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++14
0 / 100
4 ms504 KiB
#include<vector> using namespace std; vector<int> sts; int init=-1; int encode (int n, int x, int y) { if(init==-1) { init=1; vector<int> sts; for(int i=0;i<(1<<12);++i) { int cnt=0; for(int j=0;j<12;++j) { cnt+=((1<<j)&i)!=0; } if(cnt==6) sts.push_back(i); } } int X=sts[x], Y=sts[Y]; int h=-1; for(int j=0;j<12;++j) { if((X&(1<<j)) && !(Y&(1<<j))) h=j+1; } return h; }
#include<vector> using namespace std; vector<int> sts; int init=-1; int decode (int n, int q, int h) { if(init==-1) { init=1; vector<int> sts; for(int i=0;i<(1<<12);++i) { int cnt=0; for(int j=0;j<12;++j) { cnt+=((1<<j)&i)!=0; } if(cnt==6) sts.push_back(i); } } return (sts[q]&(1<<(h-1)))>0; }

Compilation message (stderr)

encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:18:25: warning: 'Y' may be used uninitialized in this function [-Wmaybe-uninitialized]
    int X=sts[x], Y=sts[Y];
                         ^
#Verdict Execution timeMemoryGrader output
Fetching results...