# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
776814 | 2023-07-08T09:57:21 Z | Minindu206 | Connecting Supertrees (IOI20_supertrees) | C++14 | 1 ms | 304 KB |
#include "supertrees.h" #include <vector> #include<bits/stdc++.h> using namespace std; struct DSU { /* data */ int n; vector<int> par, sz; void init(int _n) { n = _n; par.resize(n + 1, -1); sz.resize(n + 1, 0); } int finds(int a) { if(par[a] == -1) return a; return par[a] = finds(par[a]); } void unites(int a, int b) { int x = par[a]; int y = par[b]; if(x != y) { if(sz[x] < sz[y]) swap(x, y); par[y] = x; sz[x] += sz[y]; } } }; int construct(std::vector<std::vector<int>> p) { int n = p.size(); DSU d; d.init(n); for(int i=0;i<n-1;i++) { for(int j=i+1;j<n;j++) { if(p[i][j]) d.unites(i, j); } } vector<vector<int>> ans(n, vector<int>(n, 0)); map<int, vector<int>> mp; for(int i=0;i<n;i++) { mp[d.finds(i)].push_back(i); for(int j=0;j<n;j++) { if(i == j) continue; if(p[i][j] == 0) if(d.finds(i) == d.finds(j)) return 0; } } for(auto a:mp) { for(int i=0;i<a.second.size() - 1;i++) ans[a.second[i]][a.second[i + 1]] = ans[a.second[i + 1]][a.second[i]] = 1; } build(ans); return 1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Too few ways to get from 0 to 1, should be 1 found 0 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Too few ways to get from 0 to 1, should be 1 found 0 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 304 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Incorrect | 1 ms | 296 KB | Answer gives possible 1 while actual possible 0 |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 300 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Too few ways to get from 0 to 1, should be 2 found 0 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Too few ways to get from 0 to 1, should be 1 found 0 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Too few ways to get from 0 to 1, should be 1 found 0 |
3 | Halted | 0 ms | 0 KB | - |