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