Submission #793579

# Submission time Handle Problem Language Result Execution time Memory
793579 2023-07-26T04:14:34 Z khshg cmp (balkan11_cmp) C++14
0 / 100
798 ms 96032 KB
#include "cmp.h"
#include<bits/stdc++.h>
using namespace std;

const int arr[] = {1, 1 + 4, 1 + 4 + 4 * 4, 1 + 4 + 4 * 4 + 4 * 4 * 4, 1 + 4 + 4 * 4 + 4 * 4 * 4 + 4 * 4 * 4 * 4, 1 + 4 + 4 * 4 + 4 * 4 * 4 + 4 * 4 * 4 * 4 + 4 * 4 * 4 * 4 * 4};

void remember(int a) {
	for(int i = 0; i < 6; ++i) {
		bit_set(arr[i] + (a >> (10 - 2 * i)));
	}
}

int compare(int b) {
	int tl = 0, tr = 5;
	while(tl < tr) {
		int tm = (tl + tr) / 2;
		if(bit_get(arr[tm] + (b >> (10 - 2 * tm)))) {
			tl = tm + 1;
		} else {
			tr = tm;
		}
	}
	if(tl == 5) return 0;
	b >>= (10 - 2 * tl);
	b &= 3;
	if(b == 3) return 1;
	if(b == 0) return -1;
	if(b == 1) bit_get(0) ? 1 : -1;
	return bit_get(2) ? -1 : 1;
}

Compilation message

cmp.cpp: In function 'int compare(int)':
cmp.cpp:28:32: warning: second operand of conditional expression has no effect [-Wunused-value]
   28 |  if(b == 1) bit_get(0) ? 1 : -1;
      |                                ^
cmp.cpp:28:32: warning: third operand of conditional expression has no effect [-Wunused-value]
# Verdict Execution time Memory Grader output
1 Incorrect 798 ms 96032 KB ZERO POINTS: bit_get with address out of range