Submission #802445

#TimeUsernameProblemLanguageResultExecution timeMemory
802445SamAndKeys (IOI21_keys)C++17
Compilation error
0 ms0 KiB
#include "parks.h" #include <bits/stdc++.h> using namespace std; #define fi first #define se second #define m_p make_pair #define sz(x) ((int)(x).size()) #define all(x) (x).begin(),(x).end() const int N = 200005; int n; vector<int> g[N]; bool c[N]; void dfs(int x) { c[x] = true; for (int i = 0; i < g[x].size(); ++i) { int h = g[x][i]; if (c[h]) continue; dfs(h); } } vector<pair<int, int> > rs; vector<int> gg[N * 2], gi[N * 2]; void dfs(int x, vector<int>& a, vector<int>& b) { c[x] = true; for (int i = 0; i < gg[x].size(); ++i) { int h = gg[x][i]; if (a[gi[x][i]] == -1) { a[gi[x][i]] = rs[x].fi; b[gi[x][i]] = rs[x].se; } if (!c[h]) dfs(h, a, b); } } int construct_roads(std::vector<int> x, std::vector<int> y) { std::vector<int> u, v, a, b; n = sz(x); vector<pair<int, int> > p; map<pair<int, int>, int> mp; for (int i = 0; i < n; ++i) { p.push_back(m_p(x[i], y[i])); mp[m_p(x[i], y[i])] = i; } int z = 0; map<pair<int, int>, int> s; for (int i = 0; i < n; ++i) { int x = p[i].fi; int y = p[i].se; if (mp.find(m_p(x + 2, y)) != mp.end()) { u.push_back(mp[m_p(x, y)]); v.push_back(mp[m_p(x + 2, y)]); if (s.find(m_p(x + 1, y + 1)) == s.end()) s[m_p(x + 1, y + 1)] = z++; if (s.find(m_p(x + 1, y - 1)) == s.end()) s[m_p(x + 1, y - 1)] = z++; g[u.back()].push_back(v.back()); g[v.back()].push_back(u.back()); gg[s[m_p(x + 1, y + 1)]].push_back(s[m_p(x + 1, y - 1)]); gg[s[m_p(x + 1, y - 1)]].push_back(s[m_p(x + 1, y + 1)]); gi[s[m_p(x + 1, y + 1)]].push_back(sz(u) - 1); gi[s[m_p(x + 1, y - 1)]].push_back(sz(u) - 1); } if (mp.find(m_p(x, y + 2)) != mp.end()) { u.push_back(mp[m_p(x, y)]); v.push_back(mp[m_p(x, y + 2)]); if (s.find(m_p(x + 1, y + 1)) == s.end()) s[m_p(x + 1, y + 1)] = z++; if (s.find(m_p(x - 1, y + 1)) == s.end()) s[m_p(x - 1, y + 1)] = z++; g[u.back()].push_back(v.back()); g[v.back()].push_back(u.back()); gg[s[m_p(x + 1, y + 1)]].push_back(s[m_p(x - 1, y + 1)]); gg[s[m_p(x - 1, y + 1)]].push_back(s[m_p(x + 1, y + 1)]); gi[s[m_p(x + 1, y + 1)]].push_back(sz(u) - 1); gi[s[m_p(x - 1, y + 1)]].push_back(sz(u) - 1); } } rs.assign(sz(s), m_p(0, 0)); for (auto it = s.begin(); it != s.end(); ++it) { rs[it->se] = it->fi; } dfs(0); for (int i = 0; i < n; ++i) { if (!c[i]) return 0; } memset(c, false, sizeof c); a.assign(sz(u), -1); b.assign(sz(u), -1); for (int i = 0; i < z; ++i) { if (!c[i]) { dfs(i, a, b); } } build(u, v, a, b); return 1; }

Compilation message (stderr)

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