# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
41550 | farmersrice | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++14 | 3 ms | 1004 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
int encode(int n, int x, int y) {
int xy = x ^ y;
int lsb = xy & (-xy);
int count = 0;
while (lsb > 1) {
lsb /= 2;
count++;
}
return 2 * count - ((x ^ (1 << count)) ? 1 : 0);
}
int decode(int n, int q, int h) {
bool inverted = false;
if (h % 2 == 1) inverted = true;
h /= 2;
if (inverted) {
return (q & (1 << h) ? 0 : 1);
} else {
return (q & (1 << h) ? 1 : 0);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |