Submission #523905

#TimeUsernameProblemLanguageResultExecution timeMemory
523905MurotYCarnival Tickets (IOI20_tickets)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define ll long long #include "supertrees.h" #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:3:10: fatal error: supertrees.h: No such file or directory
    3 | #include "supertrees.h"
      |          ^~~~~~~~~~~~~~
compilation terminated.