Submission #329531

#TimeUsernameProblemLanguageResultExecution timeMemory
329531pggpConnecting Supertrees (IOI20_supertrees)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "supertrees.h"

using namespace std;

int construct(vector< vector < int > > p){
	int n = p.size();
	int b[n][n];
	for (int i = 0; i < n; ++i)
	{
		for (int j = 0; j < n; ++j)
		{
			b[i][j] = 0;
			if(j == i + 1 or i == j + 1){
				b[i][j] = 1;
			}
		}
	}
	build(b);
	return 1;
}

Compilation message (stderr)

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:19:8: error: could not convert '(int (*)[n])(& b)' from 'int (*)[n]' to 'std::vector<std::vector<int> >'
   19 |  build(b);
      |        ^
      |        |
      |        int (*)[n]