# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
314044 | linear00000 | Connecting Supertrees (IOI20_supertrees) | C++14 | 1 ms | 384 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);
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++) {
vector<int> tmp;
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;
tmp.push_back(C[i][j]);
}
}
if (tmp.size() == 1 || tmp.size() == 2) return 0;
if (tmp.size() >= 2) d[tmp[0]][tmp[2]] = 1, d[tmp[2]][tmp[0]] = 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... |