Submission #530860

# Submission time Handle Problem Language Result Execution time Memory
530860 2022-02-27T02:23:26 Z KoD cmp (balkan11_cmp) C++17
0 / 100
0 ms 200 KB
#include "cmp.h"

void remember(int n) {
  for (int i = 0; i < 6; ++i) {
    bit_set(n);
    n >>= 2;
  }
}

int compare(int b) {
  int ok = 6, ng = -1;
  while (ok - ng > 1) {
    const int md = (ok + ng) / 2;
    if (bit_get(b >> (2 * md))) {
      ok = md;
    } else {
      ng = md;
    }
  }
  if (ok == 0) {
    return 0;
  }
  const int same = b >> (2 * ok);
  const int bit = (b >> (2 * ng)) & 3;
  if (bit <= 1) {
    return bit_get(4 * same) ? 1 : -1; 
  } else {
    return bit_get(4 * same + 3) ? -1 : 1;
  }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 200 KB ZERO POINTS: bit_set with addr out of range 0