Submission #304453

#TimeUsernameProblemLanguageResultExecution timeMemory
304453SorahISAComparing Plants (IOI20_plants)C++17
Compilation error
0 ms0 KiB
#include "supertrees.h" #include <bits/stdc++.h> using namespace std; using pii = pair<int, int>; template<typename T> using Prior = priority_queue<T>; template<typename T> using prior = priority_queue<T, vector<T>, greater<T>>; #define X first #define Y second #define ALL(x) (x).begin(), (x).end() #define eb emplace_back #define pb push_back int construct(vector<vector<int>> p) { int n = p.size(); vector<vector<int>> ans(n, vector<int>(n, 0)); for (auto vec : p) { for (auto x : vec) { if (x == 3) return 0; } } for (int i = 0; i < n-1; ++i) { ans[i][i+1] = ans[i+1][i] = 1; } build(answer); return 1; }

Compilation message (stderr)

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