Submission #790178

#TimeUsernameProblemLanguageResultExecution timeMemory
790178AndreyConnecting Supertrees (IOI20_supertrees)C++14
0 / 100
1 ms212 KiB
#include "supertrees.h" #include <vector> #include<bits/stdc++.h> using namespace std; vector<vector<int>> ans(0); vector<vector<int>> haha(0); vector<bool> bruh(3001,true); int n; vector<int> col(3000,-1); void dfs(int a, int c) { col[a] = c; if(a != c) { ans[a][c] = 1; ans[c][a] = 1; } for(int i = 0; i < n; i++) { if(col[i] == -1 && haha[a][i] == 1) { dfs(haha[a][i],c); } } } int construct(vector<vector<int>> p) { n = p[0].size(); haha = p; vector<int> wut(0); for(int i = 0; i < n; i++) { ans.push_back(vector<int> (n)); } for(int i = 0; i < n; i++) { if(col[i] == -1) { dfs(i,i); wut.push_back(i); } } for(int i = 0; i < wut.size(); i++) { vector<int> wow(0); wow.push_back(wut[i]); for(int j = 0; j < wut.size(); j++) { if(haha[wut[i]][wut[j]] == 2 && bruh[j]) { bruh[j] = false; wow.push_back(wut[j]); } } for(int j = 0; j < wow.size(); j++) { ans[wow[j]][wow[(j+1)%(int)wow.size()]] = 1; ans[wow[(j+1)%(int)wow.size()]][wow[j]] = 1; } } build(ans); return 1; }

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:38:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |     for(int i = 0; i < wut.size(); i++) {
      |                    ~~^~~~~~~~~~~~
supertrees.cpp:41:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |         for(int j = 0; j < wut.size(); j++) {
      |                        ~~^~~~~~~~~~~~
supertrees.cpp:47:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |         for(int j = 0; j < wow.size(); j++) {
      |                        ~~^~~~~~~~~~~~
#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...