제출 #421120

#제출 시각아이디문제언어결과실행 시간메모리
421120Monchito슈퍼트리 잇기 (IOI20_supertrees)C++14
컴파일 에러
0 ms0 KiB
#include <iostream> #include <vector> using namespace std; int construct(vector<vector<int> > p){ int N = (int)p.size(); vector<vector<int> > b = vector<vector<int> >(N, vector<int>(N, 0)); b[0][1] = 1; for(int i=1; i<N; i++){ b[i][i-1] = 1; if(i+1 < N) b[i][i+1] = 1; } build(b); return 1; }

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

supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:15:5: error: 'build' was not declared in this scope
   15 |     build(b);
      |     ^~~~~