Advertisement
Caaaaaaat

Untitled

Nov 3rd, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.12 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. const long double pi = acos(-1);
  6.  
  7. struct point {
  8.     long double x, y;
  9.     long double weight;
  10.  
  11.     point() {
  12.         x = y = 0;
  13.         weight = 1;
  14.     }
  15.  
  16.     point(long double _x, long double _y, long double _weight = 1) {
  17.         x = _x;
  18.         y = _y;
  19.         weight = _weight;
  20.     }
  21.  
  22.     point operator+(const point other) const {
  23.         return {x * weight + other.x * other.weight,
  24.                 y * weight + other.y * other.weight};
  25.     }
  26.  
  27.     point operator-(const point other) const {
  28.         return {x * weight - other.x * other.weight,
  29.                 y * weight - other.y * other.weight};
  30.     }
  31.  
  32.     point operator/(const long double k) const {
  33.         return {x / k, y / k};
  34.     }
  35.  
  36.     long double operator*(const point other) const {
  37.         return x * other.x + y * other.y;
  38.     }
  39.  
  40.     long double operator%(const point other) const {
  41.         return x * other.y - y * other.x;
  42.     }
  43. };
  44.  
  45. long double get_area(vector<point> &polygon) {
  46.     long double area = 0;
  47.     int n = (int) polygon.size();
  48.     for (int i = 0; i < n; i++) {
  49.         int j = (i + 1) % n;
  50.         area += polygon[i] % polygon[j];
  51.     }
  52.     return area;
  53. }
  54.  
  55. point get_centroid(point a, point b, point c) {
  56.     vector<point> triangle = {a, b, c};
  57.     return {(a.x + b.x + c.x) / 3, (a.y + b.y + c.y) / 3, get_area(triangle)};
  58. }
  59.  
  60. point find_centroid(vector<point> &polygon) {
  61.     point centroid;
  62.     centroid.weight = 0;
  63.     long double area = get_area(polygon);
  64.     int n = (int) polygon.size();
  65.     for (int i = 0; i < n; i++) {
  66.         int j = (i + 1) % n;
  67.         centroid = centroid + get_centroid(point(), polygon[i], polygon[j]);
  68.     }
  69.     centroid = centroid / area;
  70.     centroid.weight = fabs(area);
  71.     return centroid;
  72. }
  73.  
  74. point get_ans(vector<point> &points) {
  75.     point result;
  76.     result.weight = 0;
  77.     int n = (int) points.size();
  78.     long double sum = 0;
  79.     for (int i = 0; i < n; i++) {
  80.         result = result + points[i];
  81.         sum += points[i].weight;
  82.     }
  83.     return result / sum;
  84. }
  85.  
  86. long double angle(point a, point b) {
  87.     long double res = fabs(atan2(a % b, a * b));
  88.     return res * 180 / pi;
  89. }
  90.  
  91. void Fast() {
  92.     cin.tie(nullptr);
  93.     cout.tie(nullptr);
  94.     ios_base::sync_with_stdio(false);
  95. }
  96.  
  97. signed main() {
  98.     Fast();
  99.     int n;
  100.     cin >> n;
  101.     vector<point> centroids;
  102.     vector<point> polygon(n);
  103.     for (int i = 0; i < n; i++) {
  104.         cin >> polygon[i].x >> polygon[i].y;
  105.     }
  106.     centroids.push_back(find_centroid(polygon));
  107.     int cnt;
  108.     cin >> cnt;
  109.     for (int i = 0; i < cnt; i++) {
  110.         int k;
  111.         cin >> k;
  112.         vector<point> points(k);
  113.         for (int j = 0; j < k; j++) {
  114.             cin >> points[j].x >> points[j].y;
  115.         }
  116.         centroids.push_back(find_centroid(points));
  117.     }
  118.     for (int i = 1; i < (int) centroids.size(); i++) {
  119.         centroids[i].weight *= -1;
  120.     }
  121.     point centroid = get_ans(centroids);
  122.     point gvozd;
  123.     cin >> gvozd.x >> gvozd.y;
  124.     point down(0, -1);
  125.     cout << fixed << setprecision(6) << angle(down, centroid - gvozd);
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement