Submission #387159

# Submission time Handle Problem Language Result Execution time Memory
387159 2021-04-08T05:25:17 Z kevinxiehk Xoractive (IZhO19_xoractive) C++17
Compilation error
0 ms 0 KB
#include "interactive.h"
#include "bits/stdc++.h"
using namespace std;

vector<int> guess(int n) {
	vector<int> ans(n);
	ans[0] = ask(1);
	vector<int> hm[7];
	vector<int> hv[7];
	set<int> tot;
	for(int i = 0; i <= 6; i++) {
		if(n < (1 << i)) break;
		for(int j = 2; j <= n; j++) {
			if(j & (1 << i)) hm[i].push_back(j);
		}
		vector<int> have =  get_pairwise_xor(hm[i]);
		hm[i].push_back(1);
		vector<int> have2 = get_pairwise_xor(hm[i]);
		int add = 1;
		for(int j = 0; j < have.size(); j++) {
			while(have[j] != have2[j + add]){
				hv[i].push_back(have2[j + add] ^ ans[0]);
				tot.insert(have2[j + add] ^ ans[0]);
				add += 2;
			}
		}
		assert(have2[i].size() == hm[i].size() - 1);
	}
	for(auto x: tot) {
		int id = 0;
		for(int i = 0; i <= 6; i++) {
			if(n < (1 << i)) break;
			for(auto y: hv[i]) {
				if(x == y) {
					id += (1 << i);
				}
			}
		}
		ans[id - 1] = x;
	}
	return ans;
}

Compilation message

Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:20:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   20 |   for(int j = 0; j < have.size(); j++) {
      |                  ~~^~~~~~~~~~~~~
In file included from /usr/include/c++/9/cassert:44,
                 from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:33,
                 from Xoractive.cpp:2:
Xoractive.cpp:27:19: error: request for member 'size' in 'have2.std::vector<int>::operator[](((std::vector<int>::size_type)i))', which is of non-class type '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'}
   27 |   assert(have2[i].size() == hm[i].size() - 1);
      |                   ^~~~