답안 #935287

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
935287 2024-02-29T03:04:58 Z Sharky Park (BOI16_park) C++17
0 / 100
336 ms 71848 KB
#include <bits/stdc++.h>
using namespace std;
 
#define int long long
const int N = 2010;
using ld = long double;
 
struct pr {
    int i, j;
    ld di;
    bool operator < (const pr& o) const {
        return di < o.di;
    }
};
 
vector<pr> a;
 
int x[N], y[N], r[N], p[N];
vector<bool> ans[100005];
vector<array<int, 3>> qry;
 
int find(int u) {
    return p[u] == u ? u : p[u] = find(p[u]);
}
 
void merge(int u, int v) {
    p[find(v)] = find(u);
}
 
bool same_set(int u, int v) {
    return find(u) == find(v);
}
 
ld dist(int i, int j) {
    return sqrt(1.0 * (x[j] - x[i]) * (x[j] - x[i]) + 1.0 * (y[j] - y[i]) * (y[j] - y[i])) - 1.0 * r[i] - 1.0 * r[j];
}
 
int32_t main() {
    ios::sync_with_stdio(0); cin.tie(0);
    int n, m, w, h;
    cin >> n >> m >> w >> h;
    for (int i = 1; i <= n; i++) cin >> x[i] >> y[i] >> r[i];
    for (int i = 1; i <= n + 4; i++) p[i] = i;
    for (int i = 1; i <= m; i++) {
        int ra, e;
        cin >> ra >> e;
        qry.push_back({ra, e, i});
    }
    sort(qry.begin(), qry.end());
    for (int i = 1; i <= n; i++) for (int j = i + 1; j <= n; j++) a.push_back((pr) {i, j, dist(i, j)});
    int UP = n + 1;
    int LEFT = n + 2;
    int RIGHT = n + 3;
    int DOWN = n + 4;
    for (int i = 1; i <= n; i++) {
        a.push_back({i, UP, (ld) (h - (y[i] + r[i]))});
        a.push_back({i, LEFT, (ld) (x[i] - r[i])});
        a.push_back({i, RIGHT, (ld) (w - (x[i] + r[i]))});
        a.push_back({i, DOWN, (ld) (y[i] - r[i])});
    }
    sort(a.begin(), a.end());
    int pt = 0;
    for (auto& [ra, e, idx] : qry) {
        while (pt < a.size() && 2 * ra >= a[pt].di) {
            merge(a[pt].i, a[pt].j);
            pt++;
        }
        vector<bool> can(5, 0);
        if (e == 1) {
            can[1] = 1;
            can[2] = !(same_set(UP, DOWN) || same_set(LEFT, DOWN) || same_set(RIGHT, DOWN));
            can[3] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(UP, DOWN) || same_set(UP, RIGHT));
            can[4] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(LEFT, UP));
        } else if (e == 2) {
            can[1] = !(same_set(UP, DOWN) || same_set(LEFT, DOWN) || same_set(RIGHT, DOWN));
            can[2] = 1;
            can[3] = !(same_set(RIGHT, LEFT) || same_set(RIGHT, UP) || same_set(RIGHT, DOWN));
            can[4] = !(same_set(UP, DOWN) || same_set(LEFT, RIGHT) || same_set(RIGHT, DOWN) || same_set(LEFT, UP));
        } else if (e == 3) {
            can[1] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(UP, DOWN) || same_set(UP, RIGHT));
            can[2] = !(same_set(RIGHT, LEFT) || same_set(RIGHT, UP) || same_set(RIGHT, DOWN));
            can[3] = 1;
            can[4] = !(same_set(UP, LEFT) || same_set(UP, DOWN) || same_set(UP, RIGHT));
        } else {
            can[1] = !(same_set(LEFT, RIGHT) || same_set(LEFT, DOWN) || same_set(LEFT, UP));
            can[2] = !(same_set(UP, DOWN) || same_set(LEFT, RIGHT) || same_set(RIGHT, DOWN) || same_set(LEFT, UP));
            can[3] = !(same_set(UP, LEFT) || same_set(UP, DOWN) || same_set(UP, RIGHT));
            can[4] = 1;
        }
        ans[idx] = can;
    }
    for (int i = 1; i <= m; i++) {
        for (int j = 1; j <= 4; j++) if (ans[i][j]) cout << j;
        cout << '\n';
    }
} 

/*
5 3
16 11
11 8 1
6 10 1
7 3 2
10 4 1
15 5 1
1 1
2 2
2 1
*/

Compilation message

park.cpp: In function 'int32_t main()':
park.cpp:64:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<pr>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   64 |         while (pt < a.size() && 2 * ra >= a[pt].di) {
      |                ~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 327 ms 70584 KB Output is correct
2 Correct 335 ms 71848 KB Output is correct
3 Correct 330 ms 71152 KB Output is correct
4 Correct 336 ms 71148 KB Output is correct
5 Correct 334 ms 70716 KB Output is correct
6 Correct 335 ms 70380 KB Output is correct
7 Correct 308 ms 70968 KB Output is correct
8 Incorrect 306 ms 70184 KB Output isn't correct
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 61 ms 10692 KB Output is correct
2 Correct 52 ms 11420 KB Output is correct
3 Correct 59 ms 10704 KB Output is correct
4 Correct 51 ms 10732 KB Output is correct
5 Correct 70 ms 10772 KB Output is correct
6 Incorrect 53 ms 10972 KB Output isn't correct
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 327 ms 70584 KB Output is correct
2 Correct 335 ms 71848 KB Output is correct
3 Correct 330 ms 71152 KB Output is correct
4 Correct 336 ms 71148 KB Output is correct
5 Correct 334 ms 70716 KB Output is correct
6 Correct 335 ms 70380 KB Output is correct
7 Correct 308 ms 70968 KB Output is correct
8 Incorrect 306 ms 70184 KB Output isn't correct
9 Halted 0 ms 0 KB -