# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
384653 | nicholask | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std;
int construct(vector <vector <int> > p){
int n=p.size();
vector <vector <int> > ans(n,vector<int>(n,0));
vector <vector <int> > ones;
bool d[n];
for (int i=0; i<n; i++) d[i]=0;
for (int i=0; i<n; i++){
if (d[i]) continue;
vector <int> v;
for (int j=i; j<n; j++){
if (p[i][j]==1){
if (d[j]) return 0;
d[j]=1;
v.push_back(j);
}
}
for (int j=0; j<v.size()-1; j++) ans[v[j]][v[j+1]]=1;
ones.push_back(v);
}
bool e[ones.size()];
for (int i=0; i<ones.size(); i++) e[i]=0;
for (int i=0; i<ones.size(); i++){
if (e[i]) continue;
vector <int> temp;
temp.push_back(ones[i].front());
for (int j=i+1; j<ones.size(); j++){
if (!e[j]&&p[ones[i].front()][ones[j].front()]==2){
temp.push_back(ones[j].front());
e[j]=1;
}
}
int ss=temp.size();
if (ss<3) continue;
for (int j=0; j<temp.size(); j++) ans[temp[j]][temp[(j+1)%ss]]=1;
}
for (int i=0; i<n; i++){
for (int j=0; j<n; j++){
if (a[j][i]) a[i][j]=1;
}
}
build(ans);
return 1;
}