104312024-04-02 10:54:36szilÚthálózatbővítéscpp17Runtime error 70/100490ms63728 KiB
#include <bits/stdc++.h>

using namespace std;
using ll = long long;

struct Point {
    ll x, y;

    bool operator==(const Point &p) {
        return x == p.x && y == p.y;
    }
};

struct Line {
    int u, v;
};

ll cross(Point p, Point q) {
    return p.x * q.y - p.y * q.x;
}

ll squared(Point p) {
    return p.x*p.x+p.y*p.y;
}

ll forog(Point a, Point b, Point c) {
    b.x -= a.x; c.x -= a.x;
    b.y -= a.y; c.y -= a.y;
    ll o = cross(b, c);
    if (o > 0) return 1;
    if (o == 0) return 0;
    if (o < 0) return -1;
}

bool operator<(const Point &p, const Point &q) {
    if ((p.x >= 0) == (q.x >= 0)) {
        ll o = cross(p, q);
        if (o == 0) return squared(p) < squared(q);
        return cross(p, q) > 0;
    }
    return (p.x >= 0) < (q.x >= 0);
}

const int MAXN = 200'001;

Point points[MAXN];
Line lines[MAXN];
bool ans[MAXN];
vector<Line> to_remove[MAXN], to_add[MAXN];
set<Line> s;
int n, ox, oy;

bool operator<(const Line &a, const Line &b) {
    Point p1 = points[a.u], q1 = points[a.v], p2 = points[b.u], q2 = points[b.v];
    if (cross(p1, q1) < 0) swap(p1, q1);
    if (cross(p2, q2) < 0) swap(p2, q2);
    if (forog(p1, q1, p2) == 0) {
        return forog(p1, q1, q2) < 0;
    }
    if (forog(p1, q1, q2) == 0) {
        return forog(p1, q1, p2) < 0;
    }
    if (forog(p1, q1, p2) == forog(p1, q1, q2)) return forog(p1, q1, p2) < 0;
    if (forog(p2, q2, p1) == forog(p2, q2, q1)) return forog(p2, q2, p1) > 0;
    throw 1;
}

void solve() {
    vector<int> indices(n);
    iota(indices.begin(), indices.end(), 1);
    sort(indices.begin(), indices.end(), [&](int i, int j){
        return points[i] < points[j];
    });
    for (int i = 0; i < n; ) {
        int j = i;
        while (j + 1 < n && cross(points[indices[i]], points[indices[j + 1]]) == 0) j++;
        for (int k = i; k <= j; k++) {
            for (Line l : to_remove[indices[k]]) {
                s.erase(l);
            }
        }
        if (indices[i] == 1) {
            auto [u, v] = *s.begin();
        }
        if (s.lower_bound({indices[i], indices[i]}) == s.begin()) {
            ans[indices[i]] = true;
        }
        for (int k = i; k <= j; k++) {
            for (Line l : to_add[indices[k]]) {
                s.insert(l);
            }
        }
        i = j + 1;
    }    
}

int main() {
    ios::sync_with_stdio(0); cin.tie(0);
    cin >> n >> ox >> oy;
    for (int i = 1; i <= n; i++) {
        cin >> points[i].x >> points[i].y;
        points[i].x -= ox;
        points[i].y -= oy;
    }
    for (int i = 0; i < n-1; i++) {
        int &u = lines[i].u, &v = lines[i].v;
        cin >> u >> v;
        if (points[v] < points[u]) swap(u, v);

        ll o = cross(points[u], points[v]);
        if (o > 0) {
            to_add[u].emplace_back(lines[i]);
            to_remove[v].emplace_back(lines[i]);
        } else if (o < 0) {
            s.insert(lines[i]);
            to_remove[u].emplace_back(lines[i]);
            to_add[v].emplace_back(lines[i]);
        }
    }
    solve();
    cout << count(ans+1, ans+n+1, true) << "\n";
    for (int i = 1; i <= n; i++) {
        if (ans[i]) cout << i << " ";
    }
    return 0;
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted12ms20752 KiB
2Accepted129ms33156 KiB
subtask210/10
3Accepted8ms22948 KiB
4Accepted10ms23168 KiB
5Accepted9ms23392 KiB
6Accepted9ms23504 KiB
7Accepted9ms23536 KiB
subtask320/20
8Accepted8ms23620 KiB
9Accepted10ms23848 KiB
10Accepted12ms24060 KiB
11Accepted18ms24776 KiB
12Accepted29ms26068 KiB
13Accepted119ms33488 KiB
14Accepted250ms43904 KiB
15Accepted21ms29800 KiB
16Accepted43ms34844 KiB
17Accepted103ms39312 KiB
subtask410/10
18Accepted10ms30200 KiB
19Accepted17ms31072 KiB
20Accepted16ms31048 KiB
21Accepted20ms32740 KiB
22Accepted20ms32204 KiB
subtask530/30
23Accepted13ms31440 KiB
24Accepted28ms33552 KiB
25Accepted12ms32152 KiB
26Accepted12ms31928 KiB
27Accepted20ms32948 KiB
28Accepted32ms34452 KiB
29Accepted48ms35932 KiB
30Accepted27ms35156 KiB
31Accepted43ms39372 KiB
32Accepted120ms42892 KiB
subtask60/30
33Accepted68ms45172 KiB
34Accepted35ms39696 KiB
35Accepted233ms52820 KiB
36Accepted275ms53084 KiB
37Accepted266ms53088 KiB
38Accepted351ms55988 KiB
39Accepted379ms56784 KiB
40Accepted490ms58364 KiB
41Runtime error254ms63728 KiB
42Accepted248ms39116 KiB