# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
314038 | linear00000 | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 1 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std;
vector<vector<int> > d;
vector<int> C[1004];
int par[1004], num = 0;
int findpar(int N) {
if (N == par[N]) return N;
else return par[N] = findpar(par[N]);
}
int merge(int a, int b) {
int aa = findpar(a), bb = findpar(b);
par[aa] = bb;
}
int construct(vector<vector<int> > v) {
int n = v.size();
for (int i=0; i<n; i++) par[i] = i;
d.resize(n);
for (int i=0; i<n; i++) d[i].resize(n);
for (int i=0; i<n; i++) {
for (int j=i + 1; j < n; j++) {
if (v[i][j] == 1) merge(i, j);
}
}
for (int i=0; i<n; i++) {
for (int j=i + 1; j < n; j++) {
if (v[i][j] == 0) {
if (findpar(i) == findpar(j)) return 0;
}
}
}
for (int i=0; i<n; i++) par[i] = findpar(i);
for (int i=0; i<n; i++) C[par[i]].push_back(i);
for (int i=0; i<n; i++) {
for (int j=0; j<C[i].size(); j++) {
if (C[i][j] != i) d[i][C[i][j]] = 1, d[C[i][j]][i] = 1;
}
}
build(d);
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... |