제출 #523907

#제출 시각아이디문제언어결과실행 시간메모리
523907MurotY카니발 티켓 (IOI20_tickets)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include "supertrees.h"
#define ll long long
#include <vector>
using namespace std;
int construct(std::vector<std::vector<int>> p) {
	int n = p.size();
	bool ok=1;
    for (int i=0;i<n;i++){
        for (int j=0;j<p[i].size();j++){
            if (p[i][j] == 0){
                ok=0;
                break;
            }

        }
    }
    if (ok){
        return 1;
    }


}

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

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