이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <vector>
#include <set>
#include <iostream>
using namespace std;
vector<int> parent(1003);
int find_head(int n){
if(parent[n] == n){
return n;
}return find_head(parent[n]);
}
int construct(std::vector<std::vector<int>> p) {
int n = p.size();
set<int> heads;
vector<vector<int>>ans(n,vector<int>(n,0));
for (int i = 0; i < n; i++) {
parent[i] = i;
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(i==j)
continue;
if(p[i][j] == 3){
return 0;
}else if(p[i][j] == 1){
int lower = min(i,j);
int higher = max(i,j);
if(find_head(lower) != find_head(higher)){
ans[i][j] = 1;
ans[j][i] = 1;
parent[higher] = find_head(lower);
}
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(i==j)
continue;
if(p[i][j] == 2){
heads.insert(find_head(i));
heads.insert(find_head(j));
}
}
}
// cout << "table travers" << endl;
vector<int> header;
for (int i : heads) {
header.push_back(i);
}
int t = header.size();
// cout << t << " " << (0<(t-1)) << endl;
for (int i = 0; i < (t-1); i++) {
// cout << "for" << endl;
ans[header[i]][header[i+1]] = 1;
ans[header[i+1]][header[i]] = 1;
}
if(t > 2){
// cout << "comare" << endl;
ans[header[0]][header[t-1]] = 1;
ans[header[t-1]][header[0]] = 1;
}
// cout << "headers connected" << endl;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
int i_head = find_head(i);
int j_head = find_head(j);
if(i==j)
continue;
if(p[i][j] == 0){
if(i_head == j_head){
return 0;
}
// if((heads.count(i_head) == 1) and (heads.count(j_head) == 1)){
// return 0;
// }
}else if(p[i][j] == 1){
if(i_head != j_head){
return 0;
}
}else if(p[i][j] == 2){
if(t < 3){
return 0;
}
if(i_head == j_head){
return 0;
}
if((heads.count(i_head) == 0) or (heads.count(j_head) == 0)){
return 0;
}
}
}
}
build(ans);
return 1;
}
# | 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... |