# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
252828 | verngutz | Question (Grader is different from the original contest) (CEOI14_question_grader) | C++17 | 0 ms | 768 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 least_differing_bit;
for(int i = 0; i < 10; i++) {
if((x & (1 << i)) ^ (y & (1 << i))) {
least_differing_bit = i;
break;
}
}
int x0 = (x & (1 << least_differing_bit)) == 0;
if(least_differing_bit < 8) {
return least_differing_bit | (x0 << 3);
} else {
return (least_differing_bit << 1) | x0;
}
}
int decode (int n, int q, int h) {
int x0, least_differing_bit;
if(h < 16) {
x0 = h >> 3;
least_differing_bit = h & 0b111;
} else {
x0 = h & 1;
least_differing_bit = h >> 1;
}
return ((q >> least_differing_bit) & 1) ^ x0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |