#include<bits/stdc++.h>
#include "supertrees.h"
using pair = std::array<int, 2>;
using ll = long long;
void stress(std::vector<std::vector<int>> p, std::vector<std::vector<int>> ans) {
int n = p.size();
std::vector<std::vector<int>> hits(n, std::vector<int>(n));
auto adj = hits;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j or ans[i][j] == 0) continue;
adj[i].push_back(j);
adj[j].push_back(i);
}
}
std::function<int(int, int, int)> dfs = [&](int u, int parent, int target) {
if (target == u) return 1;
int res = 0;
for (auto v : adj[u]) {
if (parent == v) continue;
res += dfs(v, u, target);
}
return res;
};
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j) hits[i][i] = 1;
else hits[i][j] = dfs(i, -1, j);
if (hits[i][j] != p[i][j]) {
std::cout << "mismatch\n" << i << ' ' << j << " expected " << p[i][j] << " got " << hits[i][j] << '\n';;
}
}
}
std::cout << "stress test ok\n";
}
int construct(std::vector<std::vector<int>> p) {
int n = p.size();
std::vector<std::vector<int>> ans(n, std::vector<int>(n)), lines;
std::vector<int> part(n, -1);
int max = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (i == j || p[i][j] == 0) continue;
if (part[i] > -1 && part[j] > -1) {
if (part[i] != part[j]) return 0;
continue;
}
max = std::max(p[i][j], max);
if (part[i] > -1) lines[part[i]].push_back(j), part[j] = part[i];
else if (part[j] > -1) lines[part[j]].push_back(i), part[i] = part[j];
else {
lines.push_back({});
lines.back().push_back(i);
lines.back().push_back(j);
part[i] = part[j] = lines.size() - 1;
}
}
}
for (auto line : lines) {
if (max == 2 && line.size() == 2) return 0;
for (int i = 0; i < line.size(); i++) {
for (int j = i+1; j < line.size(); j++) {
if (p[line[i]][line[j]] == 0) return 0;
}
// std::cout << line[i] << ' ';
if (max == 2) {
ans[line[i]][line[(i+1)%line.size()]] = ans[line[(i + 1)%line.size()]][line[i]] = 1;
} else {
ans[line[i]][line[(i+1)]] = ans[line[(i + 1)]][line[i]] = 1;
}
} // std::cout << '\n';
}
build(ans);
return 1;
}
Compilation message
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:72:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for (int i = 0; i < line.size(); i++) {
| ~~^~~~~~~~~~~~~
supertrees.cpp:73:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | for (int j = i+1; j < line.size(); j++) {
| ~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
1 ms |
348 KB |
Output is correct |
5 |
Correct |
1 ms |
344 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
5 ms |
1372 KB |
Output is correct |
9 |
Correct |
116 ms |
24064 KB |
Output is correct |
10 |
Correct |
1 ms |
348 KB |
Output is correct |
11 |
Correct |
1 ms |
348 KB |
Output is correct |
12 |
Correct |
5 ms |
1216 KB |
Output is correct |
13 |
Correct |
118 ms |
23972 KB |
Output is correct |
14 |
Correct |
1 ms |
344 KB |
Output is correct |
15 |
Correct |
0 ms |
348 KB |
Output is correct |
16 |
Correct |
4 ms |
928 KB |
Output is correct |
17 |
Correct |
63 ms |
14164 KB |
Output is correct |
18 |
Correct |
0 ms |
348 KB |
Output is correct |
19 |
Correct |
0 ms |
436 KB |
Output is correct |
20 |
Correct |
0 ms |
348 KB |
Output is correct |
21 |
Correct |
35 ms |
6480 KB |
Output is correct |
22 |
Correct |
120 ms |
24148 KB |
Output is correct |
23 |
Correct |
114 ms |
24144 KB |
Output is correct |
24 |
Correct |
125 ms |
24144 KB |
Output is correct |
25 |
Correct |
52 ms |
14160 KB |
Output is correct |
26 |
Correct |
152 ms |
14196 KB |
Output is correct |
27 |
Correct |
115 ms |
24064 KB |
Output is correct |
28 |
Correct |
130 ms |
24148 KB |
Output is correct |
29 |
Correct |
75 ms |
14160 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Too many ways to get from 0 to 4, should be 0 found no less than 1 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Incorrect |
0 ms |
348 KB |
Too many ways to get from 0 to 2, should be 1 found no less than 2 |
4 |
Halted |
0 ms |
0 KB |
- |