Submission #977436

#TimeUsernameProblemLanguageResultExecution timeMemory
977436AmaarsaaConnecting Supertrees (IOI20_supertrees)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> //#include "supertrees.h" using namespace std; vector < int > adj[1002]; int used[1002]; vector < int > v; void Go(int x) { used[x] = 1; v.push_back(x); for ( int X : adj[x]) { if (!used[X]) { Go(X); } } } int construct(vector< vector< int> > a) { int n = a.size(), i, j; vector < vector < int > > ans; ans.resize(n); for ( i = 0; i < n; i++) { ans[i].resize(n); for ( j = 0; j < n; j ++) { if ( a[i][j] != 0 && i != j) adj[i].push_back(j); } } for ( i = 0; i < n; i ++) { if ( used[i] == 0) { v.clear(); Go(i); for ( j = 1; j < v.size(); j ++) ans[v[j]][v[j - 1]] = ans[v[j - 1]][v[j]] = 1; } } build(ans); return 1; }

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:30:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |    for ( j = 1; j < v.size(); j ++) ans[v[j]][v[j - 1]] = ans[v[j - 1]][v[j]] = 1;
      |                 ~~^~~~~~~~~~
supertrees.cpp:34:2: error: 'build' was not declared in this scope
   34 |  build(ans);
      |  ^~~~~