Submission #997504

#TimeUsernameProblemLanguageResultExecution timeMemory
997504crafticatDrawing (CEOI22_drawing)C++17
30 / 100
1559 ms8788 KiB
#include <bits/stdc++.h> using namespace std; using pii = pair<int,int>; vector<vector<int>> g; vector<bool> vis; constexpr int inf = 1e9; struct point { int x, y; point(int x, int y) : x(x), y(y) {} point() = default; point operator-(point other) { return {x - other.x,y - other.y}; } int operator*(point other) { return x * other.y - y * other.x; } }; vector<point> m; vector<point> points; vector<int> ans; // 1 to 2, 2 to 3 int getAngle(point p1, point p2, point p3) { return (p3 - p1) * (p2 - p1); } void solve(int x, int par) { auto prev = m[par]; for (auto child : g[x]) { if (par == child) continue; int sel = -1; for (int i = 0; i < points.size(); ++i) { auto p = points[i]; if (vis[i]) continue; int ang = getAngle(m[x],p,points[sel == -1 ? 0 : sel]); if (ang > 0 || sel == -1) { sel = i; } } m[child] = points[sel]; vis[sel] = true; ans[sel] = child; solve(child,x); } } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; g.resize(n + 1); for (int i = 0; i < n - 1; ++i) { int a, b; cin >> a >> b; g[a].push_back(b); g[b].push_back(a); } points.resize(n); vis.resize(n + 1); int bestP = 0; for (int i = 0; i < n; ++i) { int x, y; cin >> x >> y; points[i] = {x,y}; if (points[bestP].x > x) { bestP = i; } if (points[bestP].x == x && points[bestP].y < y) { bestP = i; } } m.resize(n + 1); m[0] = {0,0}; m[1] = points[bestP]; vis[bestP] = true; ans.resize(n + 1); ans[bestP] = 1; solve(1,0); for (int i = 0; i < n; ++i) { cout << ans[i] << "\n"; } return 0; }

Compilation message (stderr)

Main.cpp: In function 'void solve(int, int)':
Main.cpp:37:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<point>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |         for (int i = 0; i < points.size(); ++i) {
      |                         ~~^~~~~~~~~~~~~~~
Main.cpp:33:10: warning: variable 'prev' set but not used [-Wunused-but-set-variable]
   33 |     auto prev = m[par];
      |          ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...