Submission #390608

#TimeUsernameProblemLanguageResultExecution timeMemory
390608SuhaibSawalha1Vision Program (IOI19_vision)C++17
14 / 100
57 ms8812 KiB
#include "vision.h"
#include <bits/stdc++.h>
using namespace std;
 
int dist (array<int, 2> a, array<int, 2> b) {
	return abs(a[0] - b[0]) + abs(a[1] - b[1]);
}
 
void construct_network(int n, int m, int k) {
	auto val = [&] (int i, int j) {
		return i * m + j;
	};
	vector<int> OR;
	int cur = n * m - 1;
	if (k == 1) {
		int row[n], col[m];
		int xor_for_rows, xor_for_cols;
		vector<int> ask_r, ask_c;
		for (int i = 0; i < n; ++i) {
			vector<int> p;
			for (int j = 0; j < m; ++j) {
				p.push_back(val(i, j));
			}
			add_or(p);
			row[i] = ++cur;
			ask_r.push_back(cur);
		}
		for (int j = 0; j < m; ++j) {
			vector<int> p;
			for (int i = 0; i < n; ++i) {
				p.push_back(val(i, j));
			}
			add_or(p);
			col[j] = ++cur;
			ask_c.push_back(cur);
		}
		add_xor(ask_r);
		xor_for_rows = ++cur;
		add_xor(ask_c);
		xor_for_cols = ++cur;
		for (int i = 1; i < n; ++i) {
			add_and({row[i - 1], row[i], xor_for_cols});
			OR.push_back(++cur);
		}
		for (int i = 1; i < m; ++i) {
			add_and({col[i - 1], col[i], xor_for_rows});
			OR.push_back(++cur);
		}
	}
	else {
		int q = 1e4 - 1;
		vector<int> ask[n * m];
		for (int i = 0; i < n; ++i) {
			for (int j = 0; j < m; ++j) {
				for (int h = 0; h < n; ++h) {
					for (int w = 0; w < m; ++w) {
						if (dist({i, j}, {h, w}) == k) {
							ask[val(i, j)].push_back(val(h, w));
						}
					}
				}
			}
		}
		set<int> asked[n * m];
		sort(ask, ask + n * m, [](auto &a, auto &b) {
			return a.size() > b.size();
		});
		for (int i = 0; i < n * m; ++i) {
			vector<int> to_ask;
			for (int j : ask[i]) {
				if (!asked[j].count(i)) {
					asked[i].insert(j);
					to_ask.push_back(j);
				}
			}
			if (to_ask.size() && q > 1) {
				add_xor(to_ask), ++cur;
				add_and({i, cur}); ++cur;
				q -= 2;
				OR.push_back(cur);
			}
		}
	}
	add_or(OR);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...