#include "supertrees.h"
#include <vector>
#include <map>
#include <iostream>
using namespace std;
#define sz(x) (int)x.size()
struct DSU {
int n;
vector<int> link, size;
DSU(int sz) {
n = sz;
link.resize(sz);
size.resize(sz);
for (int i = 0; i < n; i++) {
link[i] = i;
size[i] = 1;
}
}
int find(int x) {
while (x != link[x])
x = link[x];
return x;
}
bool same(int a, int b) {
return find(a) == find(b);
}
void unite(int a, int b) {
a = find(a);
b = find(b);
if (a == b)
return;
if (size[a] < size[b])
swap(a, b);
link[b] = a;
size[a] += size[b];
}
};
int construct(std::vector<vector<int>> p) {
int n = p.size();
vector<vector<int>> answer(n, vector<int>(n));
vector<vector<int>> c(n);
DSU d(n+1);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j)
continue;
if (p[i][j]) {
if (!d.same(i, j)) {
d.unite(i, j);
int x = d.find(i);
c[x].push_back(j);
c[x].push_back(i);
}
}
}
}
for (int i = 0; i < n; i++) {
if (sz(c[i]) <= 1)
continue;
vector<bool> done(n);
vector<int> x;
for (int j = 0; j < sz(c[i]); j++) {
if (!done[c[i][j]])
x.push_back(c[i][j]);
done[c[i][j]] = true;
}
vector<int> one, two;
for (int j = 0; j < sz(x); j++) {
int r = x[j];
bool o = false;
for (int k = 0; k < n; k++) {
if (k == r)
continue;
if (p[r][k] == 1) {
o = true;
break;
}
}
if (!o)
two.push_back(x[j]);
else
one.push_back(x[j]);
}
DSU dsu(n+1);
if (!one.empty()) {
for (auto o : one) {
for (int j = 0; j < n; j++) {
if (j == o)
continue;
if (p[o][j] == 1) {
answer[o][j] = 1;
answer[j][o] = 1;
dsu.unite(j, o);
}
}
}
}
for (int j = 0; j < sz(two)-1; j++) {
answer[two[j]][two[j+1]] = 1;
answer[two[j+1]][two[j]] = 1;
dsu.unite(two[j], two[j+1]);
}
answer[two.back()][two[0]] = 1;
answer[two[0]][two.back()] = 1;
for (auto x : one) {
if (!dsu.same(two[0], x)) {
dsu.unite(two[0], x);
answer[two[0]][x] = 1;
answer[x][two[0]] = 1;
if (two.size() == 2) {
answer[two[1]][x] = 1;
answer[x][two[1]] = 1;
two.push_back(x);
}
}
}
}
for (int i = 0; i < n; i++) {
answer[i][i] = 0;
}
build(answer);
return 1;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
0 ms |
348 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
0 ms |
348 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
664 KB |
Answer gives possible 1 while actual possible 0 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Runtime error |
0 ms |
348 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
0 ms |
348 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Runtime error |
0 ms |
348 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |