Submission #753503

# Submission time Handle Problem Language Result Execution time Memory
753503 2023-06-05T11:46:08 Z MetalPower Park (BOI16_park) C++14
0 / 100
570 ms 28232 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define pii pair<int, int>
#define pli pair<int, pii>
#define fi first
#define se second

const int MX = 2e3 + 50;
const int MN = 1e5 + 10;

int N, M, W, H, x[MX], y[MX], r[MX];
vector<pli> edges; // weight, u, v
vector<pli> queries;

string ans[MN];

struct dsu{
	int p[MX];

	void init(){
		for(int i = 0; i < MX; i++) p[i] = i;
	}

	int f(int x){
		if(p[x] == x) return x;
		else return p[x] = f(p[x]);
	}

	void Join(int u, int v){
		int fu = f(u), fv = f(v);
		if(fu == fv) return;
		p[fu] = fv;
	}
} D;

int diff(int a, int b){
	return (a > b ? a - b : b - a);
}

int bin_sqrt(ll x){
	int lf = 0, rg = 1e9, memo = -1;
	while(lf <= rg){
		int mid = lf + rg >> 1;
		if(1ll * mid * mid <= x) memo = mid, lf = mid + 1;
		else rg = mid - 1;
	}
	return memo;
}

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	cin >> N >> M >> W >> H;

	D.init();

	for(int i = 1; i <= N; i++){
		cin >> x[i] >> y[i] >> r[i];
		edges.push_back({(x[i] - r[i]) / 2, {N + 1, i}}); // maximum integer radius that can pass, aka is disconnected
		edges.push_back({(y[i] - r[i]) / 2, {N + 2, i}}); 
		edges.push_back({(W - x[i] - r[i]) / 2, {N + 3, i}});
		edges.push_back({(H - y[i] - r[i]) / 2, {N + 4, i}});
	}

	for(int i = 1; i <= N; i++){
		for(int j = i + 1; j <= N; j++){
			int dx = diff(x[i], x[j]), dy = diff(y[i], y[j]);
			int dist = (int) bin_sqrt(1ll * dx * dx + 1ll * dy * dy) - r[i] - r[j];
			edges.push_back({dist / 2, {i, j}});
		}
	}

	for(int i = 1; i <= M; i++){
		int rd, st; cin >> rd >> st;
		queries.push_back({rd, {st, i}});
	}

	int sz = edges.size();
	sort(edges.begin(), edges.end());
	sort(queries.begin(), queries.end());

	int j = 0;
	for(pli q : queries){
		for(; j < sz && edges[j].fi < q.fi; j++) D.Join(edges[j].se.fi, edges[j].se.se);

		for(int i = 1; i <= 4; i++){
			if(q.se.fi == i) ans[q.se.se] += (char)(i + '0');
			else{
				bool st = D.f(N + q.se.fi) != D.f(N + q.se.fi % 4 + 1);
				bool fn = D.f(N + i) != D.f(N + i % 4 + 1);
				if(st && fn) ans[q.se.se] += (char)(i + '0');
			}
		}
	}

	for(int i = 1; i <= M; i++) cout << ans[i] << '\n';
}

Compilation message

park.cpp: In function 'int bin_sqrt(long long int)':
park.cpp:45:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   45 |   int mid = lf + rg >> 1;
      |             ~~~^~~~
# Verdict Execution time Memory Grader output
1 Correct 538 ms 28156 KB Output is correct
2 Correct 570 ms 28188 KB Output is correct
3 Correct 550 ms 28200 KB Output is correct
4 Correct 564 ms 28224 KB Output is correct
5 Correct 536 ms 28164 KB Output is correct
6 Correct 552 ms 28232 KB Output is correct
7 Incorrect 505 ms 28184 KB Output isn't correct
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 42 ms 5324 KB Output is correct
2 Correct 44 ms 5352 KB Output is correct
3 Incorrect 44 ms 5400 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 538 ms 28156 KB Output is correct
2 Correct 570 ms 28188 KB Output is correct
3 Correct 550 ms 28200 KB Output is correct
4 Correct 564 ms 28224 KB Output is correct
5 Correct 536 ms 28164 KB Output is correct
6 Correct 552 ms 28232 KB Output is correct
7 Incorrect 505 ms 28184 KB Output isn't correct
8 Halted 0 ms 0 KB -