제출 #456100

#제출 시각아이디문제언어결과실행 시간메모리
456100fuad27크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++14
컴파일 에러
0 ms0 KiB
#include "supertrees.h"
#include <vector>
#include<bits/stdc++.h>
using namespace std;

int construct(std::vector<std::vector<int>> p) {
	int n = p.size();
	if(n == 1) {
		build({{1}});
		return 1;
	}
	if(n == 2) {
		build({{0,1},{1, 0}});
		return 1;
	}
	return 0;
}

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

scrivener.cpp:1:10: fatal error: supertrees.h: No such file or directory
    1 | #include "supertrees.h"
      |          ^~~~~~~~~~~~~~
compilation terminated.