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 "supertrees.h"
#ifdef ngu
#include "grader.cpp"
#endif // ngu
#include <vector>
#include<bits/stdc++.h>
using namespace std;
int construct(std::vector<std::vector<int>> p) {
int n = p.size();
auto valid = [&] (vector<int> a, vector<int> b, int c) {
for(int &j : a) for(int &k : b) if (p[j][k] != c) return false;
return true;
};
vector<int> vis(n), arr;
auto dfs = [&] (auto self, int u) -> void {
vis[u] = 1;
arr.push_back(u);
for(int v = 0; v < n; v++) if (!vis[v] && p[u][v] == 1) self(self, v);
};
std::vector<std::vector<int>> answer(n, vector<int> (n));
auto add = [&] (int u, int v) {
answer[u][v] = answer[v][u] = 1;
};
vector<vector<int> > connected;
for(int i = 0; i < n; i++) if (!vis[i]) {
arr.clear();
dfs(dfs, i);
if (!valid(arr, arr, 1)) return 0;
connected.push_back(arr);
for(int j = 1; j < arr.size(); j++) {
answer[arr[j]][arr[j - 1]] = answer[arr[j - 1]][arr[j]] = 1;
}
}
for(int i = 0; i < n; i++) vis[i] = 0;
for(auto &arr : connected) {
for(auto &j : arr) for(int k = 0; k < n; k++) if (p[j][k] != p[arr[0]][k]) return 0;
}
// auto _dfs = [&] (auto self, int u) -> void {
// vis[u] = 1;
// arr.push_back(u);
// for(int v = 0; v < n; v++) if (!vis[v] && p[u][v] == 1) self(self, v);
// };
auto _dfs = [&] (auto self, int u) -> void {
vis[u] = 1;
arr.push_back(u);
for(int v = 0; v < connected.size(); v++) if (!vis[v] && p[connected[u][0]][connected[v][0]] == 2) {
self(self, v);
}
};
for(int i = 0; i < connected.size(); i++) if (!vis[i]) {
arr.clear();
for(int &k : arr) for(int &j : arr) if (j != k) {
if (p[connected[k][0]][connected[j][0]] != 2) return 0;
}
_dfs(_dfs, i);
if (arr.size() == 1) continue;
if (arr.size() < 3) return 0;
// for(int &j : g) cout << j << " "; cout << endl;
for(int i = 1; i < arr.size(); i++) {
add(connected[arr[i]][0], connected[arr[i - 1]][0]);
}
add(connected[arr[0]][0], connected[arr.back()][0]);
}
build(answer);
for(int i = 0; i < n; i++) {
auto expand = [&] (int u) {
};
}
return 1;
}
Compilation message (stderr)
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:39:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for(int j = 1; j < arr.size(); j++) {
| ~~^~~~~~~~~~~~
supertrees.cpp:64:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for(int i = 0; i < connected.size(); i++) if (!vis[i]) {
| ~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:73:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | for(int i = 1; i < arr.size(); i++) {
| ~~^~~~~~~~~~~~
supertrees.cpp:82:10: warning: variable 'expand' set but not used [-Wunused-but-set-variable]
82 | auto expand = [&] (int u) {
| ^~~~~~
supertrees.cpp: In instantiation of 'construct(std::vector<std::vector<int> >)::<lambda(auto:24, int)> [with auto:24 = construct(std::vector<std::vector<int> >)::<lambda(auto:24, int)>]':
supertrees.cpp:69:17: required from here
supertrees.cpp:59:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int v = 0; v < connected.size(); v++) if (!vis[v] && p[connected[u][0]][connected[v][0]] == 2) {
| ~~^~~~~~~~~~~~~~~~~~
# | 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... |