This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "beechtree.h"
#include <bits/stdc++.h>
using namespace std;
#define len(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define inf 1000'000'000
template<typename T>
using vec = vector<T>;
template<typename T>
using graph = vec<vec<T>>;
std::vector<int> beechtree(int n, int m, std::vector<int> P, std::vector<int> C) {
if (n <= 8) {
graph<int> g(n);
for (int i = 1; i < n; ++i) {
g[P[i]].push_back(i);
}
vec<bool> good(n);
auto check = [&](int x) -> bool {
vec<int> v;
function<void(int)> dfs = [&](int t) {
v.push_back(t);
for (int u: g[t]) {
dfs(u);
}
};
dfs(x);
sort(all(v));
bool res = false;
do {
if (v[0] != x) continue;
auto f = [&](int i) {
int clr = C[v[i]];
int cnt = 0;
for (int j = 1; j < i; j++) {
cnt += C[v[j]] == clr;
}
return cnt;
};
bool good = true;
for (int j = 1; j < len(v); j++) {
if (P[v[j]] != v[f(j)]) {
good = false;
break;
}
}
if (good) {
res = true;
break;
}
} while (next_permutation(all(v)));
return res;
};
vec<int> res(n);
for (int i = 0; i < n; i++) {
res[i] = check(i);
}
return res;
} else {
vec<int> res(n);
res[n - 1] = 1;
for (int i = n - 2; i >= 0; i--) {
if (C[i] == C[i + 1]) {
res[i] = true;
} else {
res[i] = true;
break;
}
}
return res;
}
}
# | 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... |
# | 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... |