#include <bits/stdc++.h>
#include "supertrees.h"
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define MASK(i) (1ULL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
#define ALL(v) (v).begin(), (v).end()
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
ll LASTBIT(ll mask){return (mask) & (-mask);}
int pop_cnt(ll mask){return __builtin_popcountll(mask);}
int ctz(ll mask){return __builtin_ctzll(mask);}
int logOf(ll mask){return 63 - __builtin_clzll(mask);}
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);}
template <class T1, class T2>
bool maximize(T1 &a, T2 b){
if (a < b) {a = b; return true;}
return false;
}
template <class T1, class T2>
bool minimize(T1 &a, T2 b){
if (a > b) {a = b; return true;}
return false;
}
template <class T>
void printArr(T& container, string separator = " ", string finish = "\n", ostream &out = cout){
for(auto item: container) out << item << separator;
out << finish;
}
template <class T>
void remove_dup(vector<T> &a){
sort(ALL(a));
a.resize(unique(ALL(a)) - a.begin());
}
struct DSU{
int n;
vector<int> parent, sz;
DSU(int _n){
n = _n;
parent.resize(n); sz.resize(n, 1);
for(int i = 0; i<n; ++i) parent[i] = i;
}
int find_set(int u){return (u == parent[u]) ? u : (parent[u] = find_set(parent[u]));}
bool same_set(int u, int v){return find_set(u) == find_set(v);}
bool join_set(int u, int v){
u = find_set(u), v = find_set(v);
if (u != v){
if (sz[u] < sz[v]) swap(u, v);
parent[v] = u;
sz[u] += sz[v];
return true;
}
return false;
}
};
// void build(vector<vector<int>> p){
// cout << "Answer: \n";
// for(int i = 0; i<p.size(); ++i) printArr(p[i]);
// }
const int N = 1009;
vector<int> crew[N];
int construct(vector<vector<int>> p) {
int n = p.size();
vector<vector<int>> ans(n, vector<int>(n));
for(int i = 0; i<n; ++i) crew[i].clear();
DSU chode(n);
for(int i = 0; i<n; ++i) for(int j = i+1; j<n; ++j) if (p[i][j]) chode.join_set(i, j);
for(int i = 0; i<n; ++i) for(int j = i+1; j<n; ++j) if (p[i][j] == 0 && chode.same_set(i, j)) return 0;
for(int i = 0; i<n; ++i) crew[chode.find_set(i)].push_back(i);
DSU sigma(n);
for(int i= 0; i<n; ++i) for(int j = i+1; j<n; ++j) if (p[i][j] == 1) sigma.join_set(i, j);
for(int i = 0; i<n; ++i) if (crew[i].size()){
for(int j: crew[i]) if (j != i) {
ans[j][i] = ans[i][j] = 1;
}
break;
// vector<int> pos;
// int idx = -1;
// int cnt = 0;
// for(int j: crew[i]) if (j != sigma.find_set(j)) {
// int k = sigma.find_set(j);
// if (idx != -1 && k != idx) return 0;
// idx = k;
// ans[j][k] = ans[k][j] = 1;
// cnt++;
// }
// else pos.push_back(j);
if (pos.size() == 1) break;
if (pos.size() == 2) return 0;
int m = pos.size();
for(int x: pos) if (x != idx) for(int y: crew[i]) if (x != y)
if (p[x][y] != p[pos[0]][pos[1]]) return 0;
int deg = p[pos[0]][pos[1]];
if (pos.size() <= deg) return 0;
for(int i = 0; i<m; ++i) {
int j = (i + 1) % m;
ans[pos[i]][pos[j]] = ans[pos[j]][pos[i]] = 1;
}
if (deg == 3){
ans[pos[0]][pos[2]] = ans[pos[2]][pos[0]] = 1;
}
}
build(ans);
return 1;
}
// int main(void){
// ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
// construct({{1, 1, 2, 2}, {1, 1, 2, 2}, {2, 2, 1, 2}, {2, 2, 2, 1}});
// return 0;
// }
Compilation message
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:114:13: error: 'pos' was not declared in this scope; did you mean 'pow'?
114 | if (pos.size() == 1) break;
| ^~~
| pow
supertrees.cpp:115:13: error: 'pos' was not declared in this scope; did you mean 'pow'?
115 | if (pos.size() == 2) return 0;
| ^~~
| pow
supertrees.cpp:116:17: error: 'pos' was not declared in this scope; did you mean 'pow'?
116 | int m = pos.size();
| ^~~
| pow
supertrees.cpp:117:34: error: 'idx' was not declared in this scope
117 | for(int x: pos) if (x != idx) for(int y: crew[i]) if (x != y)
| ^~~