Submission #100392

#TimeUsernameProblemLanguageResultExecution timeMemory
100392AnaiTreasure (different grader from official contest) (CEOI13_treasure2)C++14
68 / 100
2 ms432 KiB
#include "treasure.h"
using namespace std;

const int N = 105;

bool mx[N][N];

static int ask(int l1, int c1, int l2, int c2) {
	return countTreasure(l1, c1, l2, c2); }

static void divide(int l1, int c1, int l2, int c2, int count) {
	if (count == (l2 - l1 + 1) * (c2 - c1 + 1)) {
		for (int i = l1; i <= l2; ++i)
		for (int j = c1; j <= c2; ++j)
			mx[i][j] = 1;
		return; }
	if (count == 0)
		return;

	if (l2 - l1 >= c2 - c1) {
		int mid = (l1 + l2) / 2;
		int half = ask(l1, c1, mid, c2);
		divide(l1, c1, mid, c2, half);
		divide(mid + 1, c1, l2, c2, count - half); }
	else {
		int mid = (c1 + c2) / 2;
		int half = ask(l1, c1, l2, mid);
		divide(l1, c1, l2, mid, half);
		divide(l1, mid + 1, l2, c2, count - half); } }

void findTreasure(int n){
	divide(1, 1, n, n, ask(1, 1, n, n));
	for (int i = 1; i <= n; ++i)
	for (int j = 1; j <= n; ++j)
		if (mx[i][j])
			Report(i, j); }
#Verdict Execution timeMemoryGrader output
Fetching results...