# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
798195 | 2023-07-30T13:12:02 Z | HaroldVemeno | Connecting Supertrees (IOI20_supertrees) | C++17 | 1 ms | 304 KB |
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; using ll = long long; int n; vector<vector<int>> am; vector<vector<int>> res; vector<int> comp; int compn = 0; vector<int> tv; int tvn = 0; int construct(vector<vector<int>> p) { n = p.size(); am = std::move(p); comp.resize(n, -1); res.resize(n, vector<int>(n, 0)); tv.resize(n, -1); for(int i = 0; i < n; ++i) { for(int j = 0; j < n; ++j) { if(am[i][j] == 3) { return 0; } if(am[i][j] != am[j][i]) { return 0; } } } for(int i = 0; i < n; ++i) { if(am[i][i] != 1) return 0; res[i][i] = 1; } vector<vector<int>> comps; for(int i = 0; i < n; ++i) { if(comp[i] != -1) continue; comp[i] = compn++; comps.push_back({}); for(int j = 0; j < n; ++j) { if(am[i][j] > 0) { comp[j] = comp[i]; comps[comp[i]].push_back(j); } } } for(auto& c : comps) { for(auto a : c) { for(auto b : c) { if(am[a][b] == 0) return 0; } } } vector<vector<int>> tvbycomps(compn); vector<vector<int>> ts; for(int i = 0; i < n; ++i) { if(tv[i] != -1) continue; tv[i] = tvn++; ts.push_back({}); tvbycomps[comp[i]].push_back(i); for(int j = 0; j < n; ++j) { if(am[i][j] == 1) { tv[j] = tv[i]; res[i][j] = 1; res[j][i] = 1; ts[tv[i]].push_back(j); } } } for(auto& c : ts) { for(auto a : c) { for(auto b : c) { if(am[a][b] != 1) return 0; } } } for(auto& cts : tvbycomps) { for(int i = 0; i < cts.size(); ++i) { for(int j = i+1; j < cts.size(); ++j) { for(auto a : ts[cts[i]]) { for(auto b : ts[cts[j]]) { if(am[a][b] != 2) return 0; } } } } } for(auto& cts : tvbycomps) { if(cts.size() == 1) continue; if(cts.size() == 2) return 0; for(int i = 0; i < cts.size()-1; ++i) { res[cts[i]][cts[i+1]] = 1; res[cts[i+1]][cts[i]] = 1; } res[cts[0]][cts.back()] = 1; res[cts.back()][cts[0]] = 1; } build(res); return 1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 300 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 304 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | b[0][0] is not 0 |
2 | Halted | 0 ms | 0 KB | - |