# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
625303 | Trunkty | Connecting Supertrees (IOI20_supertrees) | C++14 | 184 ms | 24120 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 <iostream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
typedef long long ll;
//#define int ll
#include "supertrees.h"
int root[1005];
vector<int> ans[1005];
int rootp[1005];
vector<int> part[1005];
int findroot(int x){
if(root[x]!=x){
root[x] = findroot(root[x]);
}
return root[x];
}
void domerge(int a, int b){
a = findroot(a);
b = findroot(b);
root[a] = b;
}
int findrootp(int x){
if(rootp[x]!=x){
rootp[x] = findrootp(rootp[x]);
}
return rootp[x];
}
void domergep(int a, int b){
a = findrootp(a);
b = findrootp(b);
rootp[a] = b;
}
int construct(vector<vector<int>> p) {
int n = p.size();
vector<vector<int>> ret;
for (int i = 0; i < n; i++) {
vector<int> row;
row.resize(n);
ret.push_back(row);
}
for(int i=0;i<n;i++){
root[i] = i;
rootp[i] = i;
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(p[i][j]){
domerge(i,j);
}
if(p[i][j]==1){
domergep(i,j);
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(p[i][j]==0 and findroot(i)==findroot(j)){
return 0;
}
}
}
for(int i=0;i<n;i++){
ans[findroot(i)].push_back(i);
part[findrootp(i)].push_back(i);
}
for(int i=0;i<n;i++){
for(int j=1;j<part[i].size();j++){
ret[part[i][j-1]][part[i][j]] = 1;
ret[part[i][j]][part[i][j-1]] = 1;
}
}
for(int i=0;i<n;i++){
set<int> s;
vector<int> v;
for(int j=0;j<ans[i].size();j++){
s.insert(findrootp(ans[i][j]));
}
for(int j:s){
v.push_back(j);
}
for(int j=1;j<v.size();j++){
ret[v[j]][v[j-1]] = 1;
ret[v[j-1]][v[j]] = 1;
}
if(v.size()<=2){
continue;
}
ret[v[0]][v.back()] = 1;
ret[v.back()][v[0]] = 1;
}
build(ret);
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... |