Submission #538392

# Submission time Handle Problem Language Result Execution time Memory
538392 2022-03-16T17:59:41 Z Sorting The Forest of Fangorn (CEOI14_fangorn) C++17
0 / 100
3000 ms 468 KB
#include <bits/stdc++.h>

using namespace std;

typedef long double ld;
typedef long long ll;
template<class T> void check_min(T &a, const T &b){ a = (a < b) ? a : b; }
template<class T> void check_max(T &a, const T &b){ a = (a > b) ? a : b; }
#define all(x) (x).begin(), (x).end()

const ll N = 2000 + 3;
const ll C = 1e4 + 3;
const ll INF = 1e9;

ll n, c, w, h;
ll x, y;
pair<ll, ll> cp[C], tp[N];

ll orient(ll x1, ll y1, ll x2, ll y2, ll x3, ll y3){
    return x1 * y2 + x2 * y3 + x3 * y1 - x1 * y3 - x2 * y1 - x3 * y2;
}

ll sign(ll x){
    return (x == 0) ? 0 : ((x > 0) ? 1 : -1);
}

bool on_line(ll x1, ll y1, ll x2, ll y2, ll x3, ll y3){
    if(orient(x1, y1, x2, y2, x3, y3)) return false;
    return min(x1, x2) <= x3 && x3 <= max(x1, x2) && min(y1, y2) <= y3 && y3 <= max(y1, y2);
}

bool intersect(ll x1, ll y1, ll x2, ll y2, ll x3, ll y3, ll x4, ll y4){
    ll a1 = sign(orient(x1, y1, x2, y2, x3, y3));
    ll a2 = sign(orient(x1, y1, x2, y2, x4, y4));
    ll a3 = sign(orient(x3, y3, x4, y4, x1, y1));
    ll a4 = sign(orient(x3, y3, x4, y4, x2, y2));

    if(on_line(x1, y1, x2, y2, x3, y3) && on_line(x1, y1, x2, y2, x4, y4))
        return true;
    if(on_line(x3, y3, x4, y4, x1, y1) && on_line(x3, y3, x4, y4, x2, y2))
        return true;

    if(!a1 || !a2 || !a3 || !a4)
        return false;

    if(a1 != a2 && a3 != a4)
        return true;

    return false;
}

array<ll, 4> segmentToLine(ll x1, ll y1, ll x2, ll y2){
    ll x3, y3, x4, y4;
    if(x1 != x2){
        x3 = x1 + (x1 - x2) * ((INF + abs(x1 - x2)) / abs(x1 - x2));
        x4 = x2 + (x2 - x1) * ((INF + abs(x2 - x1)) / abs(x2 - x1));
    }
    else{
        x3 = x1;
        x4 = x2;
    }
    if(y1 != y2){
        y3 = y1 + (y1 - y2) * ((INF + abs(y1 - y2)) / abs(y1 - x2));
        y4 = y2 + (y2 - y1) * ((INF + abs(y2 - y1)) / abs(y2 - y1));
    }
    else{
        y3 = y4 = y1;
    }
    return array<ll, 4>{x3, y3, x4, y4};
}

bool check(ll x1, ll y1, ll x2, ll y2){
    for(int i = 0; i < n; ++i){
        for(int j = i + 1; j < n; ++j){
            auto [x3, y3, x4, y4] = segmentToLine(tp[i].first, tp[i].second, tp[j].first, tp[j].second);
            bool in1 = intersect(x1, y1, x2, y2, tp[i].first, tp[i].second, tp[j].first, tp[j].second);
            bool in2 = intersect(x1, y1, x2, y2, x3, y3, x4, y4);
            if(in2){
                if(!in1){
                    return false;
                }
            }
        }
    }

    return true;
}

bool check2(ll x, ll y){
    for(int i = 0; i < n; ++i){
        for(int j = i + 1; j < n; ++j){
            if(orient(tp[i].first, tp[i].second, tp[j].first, tp[j].second, x, y) == 0){
                if(!on_line(tp[i].first, tp[i].second, tp[j].first, tp[j].second, x, y))
                    return false;
            }
        }
    }

    return true;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    cin >> w >> h >> x >> y;

    cin >> c;
    for(int i = 0; i < c; ++i){
        cin >> cp[i].first >> cp[i].second;
    }

    cin >> n;
    for(int i = 0; i < n; ++i){
        cin >> tp[i].first >> tp[i].second;
    }

    ll midx = 0, midy = 0;
    for(int i = 0; i < n; ++i){
        midx += tp[i].first;
        midy += tp[i].second;
    }

    midx /= n;
    midy /= n;

    vector<int> ans;
    for(int i = 0; i < c; ++i){
        if(!check2(cp[i].first, cp[i].second))
            continue;

        if(check(x, y, cp[i].first, cp[i].second))
            ans.push_back(i + 1);
        else if(check(x, y, midx, midy) && check(midx, midy, cp[i].first, cp[i].second))
            ans.push_back(i + 1);
    }

    cout << ans.size() << "\n";
    for(int x: ans)
        cout << x << " ";
    cout << "\n";
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 8
2 Correct 0 ms 212 KB Output is correct
3 Incorrect 0 ms 212 KB Output isn't correct
4 Incorrect 0 ms 212 KB Output isn't correct
5 Incorrect 0 ms 212 KB Output isn't correct
6 Runtime error 1 ms 468 KB Execution killed with signal 8
7 Correct 1 ms 212 KB Output is correct
8 Incorrect 2 ms 212 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Correct 1 ms 212 KB Output is correct
4 Incorrect 2 ms 212 KB Output isn't correct
5 Incorrect 1 ms 212 KB Output isn't correct
6 Correct 2 ms 212 KB Output is correct
7 Incorrect 0 ms 212 KB Output isn't correct
8 Correct 0 ms 212 KB Output is correct
9 Incorrect 1 ms 212 KB Output isn't correct
10 Incorrect 2 ms 212 KB Output isn't correct
11 Incorrect 5 ms 212 KB Output isn't correct
12 Incorrect 7 ms 332 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 3080 ms 340 KB Time limit exceeded
2 Halted 0 ms 0 KB -