Submission #976384

# Submission time Handle Problem Language Result Execution time Memory
976384 2024-05-06T13:51:43 Z biank cmp (balkan11_cmp) C++14
0 / 100
683 ms 107088 KB
#include <bits/stdc++.h>

using namespace std;

const int MAX_N = 4095;

vector<int> offset(6);

void bit_set(int addr);
int bit_get(int addr);

void remember(int n) {
    offset[0] = 1;
    for (int i = 1; i < 6; i++) {
        offset[i] = offset[i - 1] + (MAX_N >> (2 * i)) + 1;
    }
    for (int i = 0; i < 6; i++) {
        bit_set(offset[i] + (n >> (2 * i)));
    }
}

int compare(int b) {
    int l = -1, r = 6;
    while (l + 1 < r) {
        int m = (l + r) / 2;
        if (bit_get(offset[m] + (b >> (2 * m)))) {
            r = m;
        } else {
            l = m;
        }
    }
    if (l == -1) return 0;
    int digit = (b >> (2 * l)) & 3;
    if (digit == 0) return -1;
    if (digit == 3) return 1;
    if (digit == 1) {
        if (bit_get(offset[l] + 4 * (b >> (2 * r)))) return 1;
        else return -1;
    }
    if (digit == 2) {
        if (bit_get(offset[l] + 4 * (b >> (2 * r)) + 3)) return -1;
        else return 1;
    }
    assert(false);
}
# Verdict Execution time Memory Grader output
1 Incorrect 683 ms 107088 KB ZERO POINTS: For a=1612 and b=2124, correct answer is 1, got -1