Submission #997510

#TimeUsernameProblemLanguageResultExecution timeMemory
997510crafticatDrawing (CEOI22_drawing)C++17
30 / 100
1586 ms9296 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<pair<point,int>> 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; int selId = -1; for (int i = 0; i < points.size(); ++i) { auto [p,id] = points[i]; if (vis[i]) continue; int ang = getAngle(m[x],p,points[sel == -1 ? 0 : sel].first); if (ang > 0 || sel == -1) { sel = i; selId = id; } } m[child] = points[sel].first; vis[sel] = true; ans[selId] = child; solve(child,x); } } point leftSide; bool comp(pair<point,int> a, pair<point,int> b) { return getAngle(leftSide,a.first,b.first) > 0; } 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},i}; if (points[bestP].first.x > x) { bestP = i; } if (points[bestP].first.x == x && points[bestP].first.y < y) { bestP = i; } } m.resize(n + 1); leftSide = points[bestP].first; sort(points.begin(),points.end(),comp); for (auto [p, i] : points) { if (points[bestP].first.x > p.x) { bestP = i; } if (points[bestP].first.x == p.x && points[bestP].first.y < p.x) { bestP = i; } } m[0] = {0,0}; m[1] = leftSide; vis[bestP] = true; ans.resize(n + 1); ans[points[bestP].second] = 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:38:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<point, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |         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...