# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
783589 | mindiyak | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 209 ms | 22064 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <vector>
#include <iostream>
#define pb push_back
using namespace std;
vector<int> head;
vector<int> leaf;
int find_head(int val){
if(head[val] == val)
return val;
int temp = find_head(head[val]);
head[val] = temp;
return temp;
}
int find_leaf(int val){
if(leaf[val] == val)
return val;
int temp = find_leaf(leaf[val]);
leaf[val] = temp;
return temp;
}
int construct(vector<vector<int>> p) {
// cout << "started" << endl;
int n = p.size();
vector<vector<int>> ans;
vector<int> temp(n,0);
for (int i = 0; i < n; i++) {
ans.pb(temp);
head.pb(i);
leaf.pb(i);
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(p[i][j] >= 1){
int c = min(i,j),d = max(i,j);
int h_c = find_head(c);
int h_d = find_head(d);
int l_c = find_leaf(c);
int l_d = find_leaf(d);
if(h_c != h_d){
ans[h_c][h_d] = 1;
ans[h_d][h_c] = 1;
}
head[h_d] = h_c;
leaf[h_c] = l_d;
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
int c = min(i,j),d = max(i,j);
int h_c = find_head(c);
int h_d = find_head(d);
if(p[i][j] == 2){
int l_c = find_leaf(c);
int l_d = find_leaf(d);
ans[h_c][l_d] = 1;
ans[l_d][h_c] = 1;
if(h_c == h_d or l_c != l_d){
return 0;
}
}
if(p[i][j] == 0 and h_c == h_d){
return 0;
}
if(p[i][j] == 1 and h_c != h_d){
return 0;
}
}
}
build(ans);
// cout << "finish" << endl;
return 1;
}
컴파일 시 표준 에러 (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... |