supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:37:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for(int j = 1; j < arr.size(); j++) {
| ~~^~~~~~~~~~~~
supertrees.cpp:44:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int i = 0; i < connected.size(); i++) if (!vis[i]) {
| ~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:48:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int j = 0; j < connected.size(); j++) if (p[connected[i][0]][connected[j][0]] == 2) {
| ~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:56:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | for(int i = 1; i < g.size(); i++) {
| ~~^~~~~~~~~~
/usr/bin/ld: /tmp/ccuSvnZB.o: in function `build(std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >)':
grader.cpp:(.text+0x260): multiple definition of `build(std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >)'; /tmp/cchVmFIC.o:supertrees.cpp:(.text+0x260): first defined here
/usr/bin/ld: /tmp/ccuSvnZB.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/cchVmFIC.o:supertrees.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status