This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "supertrees.h"
#include <vector>
#include<bits/stdc++.h>
using namespace std ;
const int N = 1002;
int dsu[N] , sz[N];
int get(int u){
if(u == dsu[u])
return u ;
return dsu[u] = get(dsu[u]);
}
void connect(int u , int v){
u = get(u) , v = get(v);
if(u == v)return ;
if(sz[u] > sz[v])swap(u , v);
sz[v] += sz[u];
dsu[u] = v ;
}
bool same(int u , int v){
u = get(u) , v = get(v);
return u == v ;
}
vector<int> v , adj[N];
int construct(vector<vector<int>> p) {
int n = p.size();
vector<vector<int>> answer (n , vector<int> (n , 0));
for(int i = 0 ; i < n ; i ++)sz[i] = 1 , dsu[i] = i ;
int cnt[n] = {} , cnt1[n] = {};
for(int i = 0 ; i < n ; i ++){
for(int j = 0 ; j < n ; j ++){
if(p[i][j])connect(i , j);
if(i == j)continue;
cnt[i] += (p[i][j] == 2 );cnt1[i] += (p[i][j] == 1);
if(p[i][j] == 1 )adj[i].push_back(j) ;// , adj[j].push_back(i);
}
}
map<int, set<int> > mp ;
for(int i = 0 ; i < n ; i ++){
for(int j = 0 ; j < n ;j ++)
{
// if(p[i][j] == 0&& same(i , j) || (p[i][j] && sz[get(dsu[i])] == 2))return 0 ;
if(p[i][j] && i != j)mp[dsu[i]].insert(i) , mp[dsu[i]].insert(j);
}
}
int vis[n] = {};
for(auto f : mp){
// cout << "FF\n";
vector<int> cycle ;
for(auto ff : f.second){
if(!vis[ff]){
vis[ff] ++ ;
cycle.push_back(ff);
for(auto it : adj[ff]){
vis[it] ++ ;
}
}
}
if(cycle.size() == 1){
int last = cycle[0];
for(auto it : adj[cycle[0]]){
// cout << "last " << last << " " << it << endl ;
answer[it][last] = answer[last][it] = 1 ;
last = it ;
}
}
else {
int last = cycle[0];
for(int i = 1 ; i < cycle.size() ; i ++){
int curr = cycle[i];
answer[last][curr] = answer[curr][last] = 1 ;
last = curr ;
}
answer[cycle[0]][last] = answer[last][cycle[0]] = 1 ;
for(auto ff : cycle){
int last = ff ;
for(auto it : adj[ff]){
answer[it][last] = answer[last][it] = 1 ;
last = it ;
}
}
}
}
for(int i = 0 ; i < n ; i ++)answer[i][i] = 0 ;
build(answer);
return 1;
}
Compilation message (stderr)
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:108:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
108 | for(int i = 1 ; i < cycle.size() ; i ++){
| ~~^~~~~~~~~~~~~~
# | 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... |