답안 #1064887

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1064887 2024-08-18T18:57:09 Z kkkkkkkk 슈퍼트리 잇기 (IOI20_supertrees) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;

int construct(vector<vector<int> > paths) {
    int n=paths.size();
    vector<vector<int> > a=paths;
    for (int i=0;i<n;i++) {
        for (int j=0;j<n;j++) {
            if (j==i+1||i==j+1)
                a[i][j]=1;
            else a[i][j]=0;
        }
    }
    build(a);
    return 1;
}

Compilation message

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(a);
      |     ^~~~~