제출 #693983

#제출 시각아이디문제언어결과실행 시간메모리
693983T0p_슈퍼트리 잇기 (IOI20_supertrees)C++14
컴파일 에러
0 ms0 KiB
#include "supertrees.h"
#include <bits/stdc++.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;
		b[i][i+1] = 1;
	}

	build(b);
	return 1;
}

컴파일 시 표준 에러 (stderr) 메시지

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