Submission #333338

# Submission time Handle Problem Language Result Execution time Memory
333338 2020-12-05T16:29:20 Z emaborevkovic Xoractive (IZhO19_xoractive) C++17
0 / 100
2 ms 492 KB
#include <bits/stdc++.h>
#include <interactive.h>

using namespace std;

typedef long long ll;
#define pb push_back
#define mp make_pair
#define ff first
#define ss second

const int N = 105;
vector <int> v[N];
vector <int> c[N];
vector <pair <int, int> > s;
int ima[N];
map <int, int> m;

vector <int> guess(int n) {
	memset(ima, 0, sizeof ima);
	vector <int> res(n, 0);
	for (int i=0;i<n;i++) {
		v[i].clear();
		c[i].clear();
	}
	for (int i=1;i<n;i++) {
		int sada = i;
		for (int j=7;j>=0;j--) {
			if (sada >= 1<<j) {
				sada -= 1<<j;
				v[j].pb(i+1);
				ima[i]++;
			}
		}
		s.pb(mp(ima[i], i));
	}
	int prvi = ask(1);
	for (int i=0;i<8;i++) {
		if (v[i].size() == 0) continue;
		vector <int> a, b;
		a = get_pairwise_xor(v[i]);
		v[i].pb(1);
		b = get_pairwise_xor(v[i]);
		int pos = 0;
		for (int j=0;j<a.size();j++) {
			while (a[j] != b[pos] && pos < b.size()) {
				c[i].pb(b[pos]);
				pos += 2;
			} 
			pos += 2;
		}
		for (int j=0;j<c[i].size();j++) {
			c[i][j] ^= prvi;
		}
	}
	sort(s.begin(), s.end());
	reverse(s.begin(), s.end());
	for (auto x : s) {
		int sada = x.ss;
		int curr = 0;
		for (int i=7;i>=0;i--) {
			if (sada >= 1<<i) {
				sada -= 1<<i;
				for (int j=1;j<c[i].size();j++) {
					if (c[i][j] == -1) continue;
					m[c[i][j]]++;
					if (m[c[i][j]] == ima[x.ss]) curr = c[i][j];
				}
			}
		}
		sada = x.ss;
		for (int i=7;i>=0;i--) {
			if (sada >= 1<<i) {
				sada -= 1<<i;
				for (int j=1;j<c[i].size();j++) {
					m[c[i][j]] = 0;
					if (c[i][j] == curr) c[i][j] = -1;
				}
			}
		}
		res[x.ss] = curr;
	}
	res[0] = prvi;
	return res;
}

Compilation message

Xoractive.cpp: In function 'std::vector<int> guess(int)':
Xoractive.cpp:45:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |   for (int j=0;j<a.size();j++) {
      |                ~^~~~~~~~~
Xoractive.cpp:46:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |    while (a[j] != b[pos] && pos < b.size()) {
      |                             ~~~~^~~~~~~~~~
Xoractive.cpp:52:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |   for (int j=0;j<c[i].size();j++) {
      |                ~^~~~~~~~~~~~
Xoractive.cpp:64:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |     for (int j=1;j<c[i].size();j++) {
      |                  ~^~~~~~~~~~~~
Xoractive.cpp:75:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   75 |     for (int j=1;j<c[i].size();j++) {
      |                  ~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 364 KB Output is not correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 492 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -