제출 #314031

#제출 시각아이디문제언어결과실행 시간메모리
314031linear00000슈퍼트리 잇기 (IOI20_supertrees)C++14
컴파일 에러
0 ms0 KiB
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; int construct(vector<vector<int> > v) { int n = v.size(); int d[n][n]; for (int i=0; i<n; i++) { d[0][i] = 1, d[i][0] = 1; } build(d); return 1; }

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

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