# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
314064 | linear00000 | Connecting Supertrees (IOI20_supertrees) | C++14 | 266 ms | 22264 KiB |
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 <bits/stdc++.h>
using namespace std;
vector<vector<int> > d;
vector<int> C[1004];
int par[1004], num = 0;
int findpar(int N) {
if (N == par[N]) return N;
else return par[N] = findpar(par[N]);
}
void merge(int a, int b) {
int aa = findpar(a), bb = findpar(b);
par[aa] = bb;
}
int construct(vector<vector<int> > v) {
int n = v.size();
for (int i = 0; i < n; i++) par[i] = i;
d.resize(n);
for (int i = 0; i < n; i++) d[i].resize(n);
// checking
int type = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (v[i][j] == 2) {
type = 2;
break;
}
if (v[i][j] == 1) type = 1;
}
if (type == 2) break;
}
// checking ends
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (v[i][j] == 2 && i != j) merge(i, j);
}
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (v[i][j] == 0) {
if (findpar(i) == findpar(j)) return 0;
}
}
}
for (int i = 0; i < n; i++) par[i] = findpar(i);
for (int i = 0; i < n; i++) C[par[i]].push_back(i);
for (int i = 0; i < n; i++) {
int cnt = 0;
if (C[i].size() == 2) return 0;
else if (C[i].size() >= 3) {
for (int j = 0; j < C[i].size() - 1; j++) {
d[C[i][j]][C[i][j + 1]] = 1, d[C[i][j + 1]][C[i][j]] = 1;
}
d[C[i][C[i].size() - 1]][C[i][0]] = 1, d[C[i][0]][C[i][C[i].size() - 1]] = 1;
}
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (v[i][j] >= 1 && i != j) merge(i, j);
}
}
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
if (v[i][j] == 0) {
if (findpar(i) == findpar(j)) return 0;
}
}
}
for (int i = 0; i < n; i++) par[i] = findpar(i);
for (int i = 0; i < n; i++) C[par[i]].push_back(i);
for (int i = 0; i < n; i++) {
for (int j = 0; j < C[i].size(); j++) {
if (C[i][j] != i) d[i][C[i][j]] = 1, d[C[i][j]][i] = 1;
}
}
build(d);
return 1;
}
Compilation message (stderr)
# | 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... |