This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// correct/BM-full.cpp
#include <set>
#include "sphinx.h"
using namespace std;
int N;
int p[250];
vector<int> edge[250];
vector<int> ord;
bool reached[250];
set<int> unchecked;
bool keep[250];
set<int> ccEdge[250];
set<int> cc;
int parity[250];
int where(int x) {
if (p[x] < 0) return x;
return (p[x] = where(p[x]));
}
int color(int x) { return (ord[x] >= 0 ? ord[x] + N : where(x)); }
void dfs(int x) {
reached[x] = true;
for (int i : edge[x]) {
if (!reached[i] && color(x) == color(i)) dfs(i);
}
}
int expected() {
for (int i = 0; i < N; i++) reached[i] = false;
int sum = 0;
for (int i = 0; i < N; i++) {
if (!reached[i]) {
sum++;
dfs(i);
}
}
return sum;
}
void pDfs(int x) {
reached[x] = true;
for (int i : ccEdge[x]) {
if (!reached[i]) {
parity[i] = 1 - parity[x];
pDfs(i);
}
}
}
vector<int> find_colours(int NN, vector<int> X, vector<int> Y) {
N = NN;
ord.resize(N);
for (int i = 0; i < N; i++) p[i] = -1;
int M = X.size();
for (int i = 0; i < M; i++) {
edge[Y[i]].push_back(X[i]);
edge[X[i]].push_back(Y[i]);
}
for (int i = 1; i < N; i++) {
while (true) {
for (int j = 0; j <= i; j++) ord[j] = -1;
for (int j = i + 1; j < N; j++) ord[j] = N;
if (perform_experiment(ord) == expected()) break;
unchecked.clear();
for (int j = 0; j < i; j++) {
if (where(j) != i) unchecked.insert(where(j));
}
vector<int> vec(unchecked.size());
int pos = 0;
for (int j : unchecked) vec[pos++] = j;
int a = 0, b = pos - 1;
while (a != b) {
int half = (a + b) / 2;
for (int j = 0; j < N; j++) keep[j] = false;
for (int j = a; j <= half; j++) keep[vec[j]] = true;
for (int j = 0; j < i; j++) {
if (keep[where(j)]) {
ord[j] = -1;
} else {
ord[j] = N;
}
}
ord[i] = -1;
for (int j = i + 1; j < N; j++) ord[j] = N;
if (perform_experiment(ord) == expected()) {
a = half + 1;
} else {
b = half;
}
}
p[where(vec[a])] = i;
}
}
for (int i = 0; i < N; i++) cc.insert(where(i));
vector<int> F(N);
for (int i = 0; i < N; i++) F[i] = -1;
if (cc.size() == 1) {
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) ord[j] = -1;
ord[0] = i;
if (perform_experiment(ord) == 1) {
for (int j = 0; j < N; j++) F[j] = i;
break;
}
}
} else {
for (int i = 0; i < N; i++) {
for (int j : edge[i]) {
if (where(i) != where(j)) {
ccEdge[where(i)].insert(where(j));
ccEdge[where(j)].insert(where(i));
}
}
}
for (int i = 0; i < N; i++) reached[i] = false;
pDfs((*cc.begin()));
for (int par = 0; par < 2; par++) {
for (int i = 0; i < N; i++) {
while (true) {
for (int j = 0; j < N; j++) {
if (parity[where(j)] == par || F[where(j)] != -1) {
ord[j] = i;
} else {
ord[j] = -1;
}
}
if (perform_experiment(ord) == expected()) break;
unchecked.clear();
for (int j = 0; j < N; j++) {
if (parity[where(j)] == 1 - par && F[where(j)] == -1)
unchecked.insert(where(j));
}
vector<int> vec(unchecked.size());
int pos = 0;
for (int j : unchecked) vec[pos++] = j;
int a = 0, b = pos - 1;
while (a != b) {
int half = (a + b) / 2;
for (int j = 0; j < N; j++) keep[j] = false;
for (int j = a; j <= half; j++)
if (F[vec[j]] == -1) keep[vec[j]] = true;
for (int j = 0; j < N; j++) {
if (keep[where(j)]) {
ord[j] = -1;
} else {
ord[j] = i;
}
}
if (perform_experiment(ord) == expected()) {
a = half + 1;
} else {
b = half;
}
}
F[where(vec[a])] = i;
}
}
}
for (int i = 0; i < N; i++) F[i] = F[where(i)];
}
return F;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |