Submission #419939

#TimeUsernameProblemLanguageResultExecution timeMemory
419939ioiConnecting Supertrees (IOI20_supertrees)C++14
0 / 100
1 ms204 KiB
#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){ 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(int i = 1 ; i < cycle.size() ; i ++){ int curr = cycle[i]; answer[last][curr] = answer[curr][last] = 1 ; last = curr ; } } 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:90:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   90 |                 for(int i = 1 ; i < cycle.size() ; i ++){
      |                                 ~~^~~~~~~~~~~~~~
supertrees.cpp:103:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  103 |                 for(int i = 1 ; i < cycle.size() ; i ++){
      |                                 ~~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...