Submission #17512

# Submission time Handle Problem Language Result Execution time Memory
17512 2015-12-24T02:50:06 Z gs14004 cmp (balkan11_cmp) C++14
0 / 100
972 ms 104988 KB
#include "cmp.h"
#include <vector>
#include <algorithm>
using namespace std;

void remember(int n) {
	n += 4096;
	while(n){
		bit_set(n);
		n >>= 1;
	}
}

int compare(int b) {
	b += 4096;
	if(bit_get(b)) return 0;
	vector<int> v;
	while(b){
		v.push_back(b);
		b >>= 1;
	}
	reverse(v.begin(), v.end());
	int s = 0, e = v.size() - 2;
	while(s != e){
		int m = (s+e)/2;
		if(!bit_get(v[m])) e = m;
		else s = m+1;
	}
	if(v[s]%2) return -1;
	return 1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 972 ms 104988 KB ZERO POINTS: For a=3040 and b=3318, correct answer is 1, got -1