Submission #44619

#TimeUsernameProblemLanguageResultExecution timeMemory
44619MatheusLealVQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define f first #define s second using namespace std; typedef pair<int, int> pii; int g = 0, Nmax = 0; vector<int> v; int encode (int n, int x, int y) { v.clear(); for(int val = 1; val < (1<<12); val ++) { int l = 0, r = 0; for(int bit = 0; bit < 12; bit ++) { if(val & (1<<bit)) { if(bit < 6) l++; else r ++; } } if(l == r) v.push_back(val); } x = v[x], y = v[y]; for(int bit = 0; bit < 12; bit ++) { if( (x & (1<<bit)) && !(y & (1<<bit))) return bit + 1; }
#include <bits/stdc++.h> #define f first #define s second using namespace std; typedef pair<int, int> pii; int g = 0, Nmax = 0; vector<int> v; int decode (int n, int q, int h) { v.clear(); for(int val = 1; val < (1<<12); val ++) { int l = 0, r = 0; for(int bit = 0; bit < 12; bit ++) { if(val & (1<<bit)) { if(bit < 6) l++; else r ++; } } if(l == r) v.push_back(val); } h --; int val = v[q]; if(val & (1<<h)) return 1; return 0; }

Compilation message (stderr)

encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:37:5: error: expected '}' at end of input
     }
     ^
encoder.cpp:37:5: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^