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