# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
576135 | Vanilla | 슈퍼트리 잇기 (IOI20_supertrees) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "supertrees.h"
using namespace std;
const int maxn = 1002;
int dsu[maxn];
set <int> comp [maxn];
int get_dad (int x) {
return dsu[x] = (x == dsu[x] ? x: get_dad(dsu[x]));
}
void merge (int a, int b){
a = get_dad(a);
b = get_dad(b);
dsu[b] = a;
}
int construct(vector<vector<int>> p) {
int n = p.size();
vector <vector <int> > b (n, vector <int> (n));
for (int i = 0; i < n; i++){
dsu[i] = i;
comp[i].insert(i);
}
for (int i = 0; i < n; i++){
for (int j = 0; j < i; j++){
if (p[i][j] != 0) merge(i,j);
}
}
for (int i = 0; i < n; i++){
for (int j = 0; j < i; j++){
if (p[i][j] == 0 && get_dad(i) == get_dad(j)) return 0;
if (get_dad(i) == get_dad(j)) comp[get_dad(i)].insert(j);
}
}
for (int i = 0; i < n; i++){
vector <int> v;
for (int j: comp[i]) {
v.push_back(j);
}
for (int j = 0; j < v.size(); j++){
// cout << v[j] << " " << v[(j + 1) % v.size()] << "\n";
b[v[j]][v[(j + 1) % v.size()]] = b[v[(j + 1) % v.size()]][v[j]] = 1;
}
}
build(b);
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... |