Submission #523907

#TimeUsernameProblemLanguageResultExecution timeMemory
523907MurotYCarnival Tickets (IOI20_tickets)C++14
Compilation error
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;
    }


}

Compilation message (stderr)

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