Submission #550343

# Submission time Handle Problem Language Result Execution time Memory
550343 2022-04-17T21:54:50 Z LucaDantas Park (JOI17_park) C++17
10 / 100
542 ms 748 KB
// I haven't checked it in a tree because the sample doesn't have a tree example so I'll test if later if I get wa (which I'll probably get)
#include "park.h"
#include <bits/stdc++.h>
using namespace std;

mt19937 rng(random_device{}());

int rnd(int x) { return (rng() % x + x) % x; }

constexpr int maxn = 1410;

int ask[maxn];

int Ask2(int a, int b, int c[]) { if(a > b) swap(a, b); return Ask(a, b, c); }
void Answer2(int a, int b) { if(a > b) swap(a, b); Answer(a, b); }

int edge(int a, int b) {
	// ask if there is a direct edge between a and b
	memset(ask, 0, sizeof ask);
	ask[a] = ask[b] = 1;
	return Ask2(a, b, ask);
}

vector<vector<int>> group(int a, vector<int> subtrees, vector<int> tot) {
	// we know there is an edge between a and b
	
	vector<vector<int>> ans;

	vector<bool> mark(tot.size());

	shuffle(subtrees.begin(), subtrees.end(), rng);

	int n = (int)(tot.size());
	for(int i = 0; i < n; i++) {
		mark[i] = tot[i] == a;
		for(int b : subtrees)
			mark[i] = mark[i] || (tot[i] == b);
	}

	for(int b : subtrees) {
		ans.push_back({b});
		for(int i = 0; i < n; i++) {
			if(mark[i]) continue;

			memset(ask, 0, sizeof ask);
			for(int j = 0; j < n; j++)
				ask[tot[j]] = 1;
			ask[b] = 0;

			if(!Ask2(a, tot[i], ask)) {
				ans.back().push_back(tot[i]);
				mark[i] = 1;
			}
		}
	}

	return ans;
}

vector<int> find_neighbours(int a, vector<int> possible) {
	vector<int> ans;
	for(int b : possible)
		if(b != a && edge(a, b)) ans.push_back(b);
	return ans;
}

void go(vector<int> possible, int depth) {
	// assert(depth <= 18);
	if(possible.size() <= 1) return;
	if(possible.size() == 2) {
		Answer2(possible[0], possible[1]);
		return;
	}
	int a = possible[0];
	vector<int> neighbours = find_neighbours(a, possible);
	for(int b : neighbours)
		Answer2(a, b);

	vector<vector<int>> grp = group(a, neighbours, possible);

	for(vector<int> sub : grp)
		go(sub, depth+1);
}

void Detect(int T, int N) {
	if(T == 1) {
		for(int i = 0; i < N; i++)
			for(int j = i+1; j < N; j++)
				if(edge(i, j)) Answer2(i, j);
		return;
	}
	vector<int> all(N);
	iota(all.begin(), all.end(), 0);
	shuffle(all.begin(), all.end(), rng);
	go(all, 0);
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 10 ms 340 KB Output is correct
3 Correct 9 ms 340 KB Output is correct
4 Correct 9 ms 344 KB Output is correct
5 Correct 11 ms 340 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 200 ms 748 KB Wrong Answer[5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 334 ms 624 KB Output is correct
2 Incorrect 542 ms 564 KB Wrong Answer[5]
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 304 ms 600 KB Wrong Answer[5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 158 ms 432 KB Wrong Answer[6]
2 Halted 0 ms 0 KB -