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"
#include <algorithm>
#include <string.h>
#include <iostream>
#include <stdio.h>
#include <vector>
#include <queue>
#include <cmath>
#include <set>
#include <map>
using namespace std;
#define N 1010
#define ff first
#define ss second
#define ll long long
#define pb push_back
#define mod 1000000007
#define pii pair <int, int>
#define sz(a) int(a.size())
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
ll bigmod(ll a,ll e) {if(e==0)return 1;ll x=bigmod(a*a%mod,e>>1);return e&1?x*a%mod:x;}
int n;
int vis[N];
int vis2[N];
int vis3[N];
int arr[N][N];
int pat[N][N];
vector <int> E;
int P[N], sz[N];
int ata(int x)
{
	if(x == P[x]) return x;
	return P[x] = ata(P[x]);
}
void uni(int a, int b)
{
	a = ata(a);
	b = ata(b);
	if(a == b) return;
	if(sz[a] < sz[b]) swap(a, b);
	P[b] = a, sz[a] += sz[b], sz[b] = 0;
	
	arr[a][b] = arr[b][a] = 1;
}
void dfs(int nd)
{
	E.pb(nd);
	vis[nd] = 1;
	for(int i = 0; i < n; i++) vis2[i] = (pat[nd][i] == 2 ? 0 : vis2[i]);
	for(int i = 0; i < n; i++)
		if(pat[nd][i] == 2 && !vis[i] && vis2[i]) {
			dfs(i);
			return;
		}
}
int construct(vector<vector<int>> p) {
	n = p.size();
	for(int i = 0; i < n; i++) P[i] = i, sz[i] = 1;
	for(int i = 0; i < n; i++)
		for(int h = 0; h < n; h++) {
			pat[i][h] = p[i][h];
			
			if(p[i][h] == 3) return 0;
		}
	
	for(int i = 0; i < n; i++) {
		if(vis[i]) continue;
		E.clear();
		memset(vis2, 0, sizeof(vis2));
		for(int h = 0; h < n; h++) vis2[h] = (p[i][h] == 2 ? 1 : 0);
		dfs(i);
		if(E.size() == 2) return 0;
		int last = -1;
		for(auto h: E) {
			if(last != -1) arr[last][h] = arr[h][last] = 1;
			last = h;
			for(int j = 0; j < n; j++)
				if(p[h][j] == 1 && h != j) {
					if(vis3[j]) return 0;
					uni(h, j);
				}
		}
		if(E.size() == 1) {
			for(int h = 0; h < n; h++) if(p[i][h] == 2) return 0;
			continue;
		}
		arr[E[0]][last] = arr[last][E[0]] = 1;
	}
	for(int i = 0; i < n; i++)
		for(int h = 0; h < n; h++)
			if(!p[i][h] && ata(i) == ata(h)) return 0;
	vector <vector <int>> ret;
	ret.resize(n);
	for(int i = 0; i < n; i++)
		for(int h = 0; h < n; h++)
			ret[i].pb(arr[i][h]);
	
	build(ret);
	return 1;
}
Compilation message (stderr)
supertrees.cpp:23: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
   23 | #pragma GCC optimization ("O3")
      | 
supertrees.cpp:24: warning: ignoring #pragma GCC optimization [-Wunknown-pragmas]
   24 | #pragma GCC optimization ("unroll-loops")
      || # | 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... |