AcWing 4202. 穿过圆

这段代码展示了如何利用bitset高效地计算多个点与圆之间的距离情况,主要应用于大规模数据集下的碰撞检测或覆盖问题。核心是将每个点是否在某个圆内的状态压缩到bitset中,然后通过异或操作快速找出两个点对应圆覆盖的不同部分数量。
摘要由CSDN通过智能技术生成
#include <vector>
#include <iostream>
#include<map>
#include<cmath>
#include<bitset>
using namespace std;

const int N = 1e3 + 10;
typedef pair<int, int> PII;
const double eps = 1e-6;
int n, m, k;
struct Node {
	int x, y;
	int r, cnt;
}cir[N], node[N];
bitset<N> st[N];

bool dist (int a, int b) {
	double dis1 = node[a].x - cir[b].x;
	double dis2 = node[a].y - cir[b].y;
	double dif = sqrt(dis1 * dis1 + dis2 * dis2);
	return dif <= cir[b].r - eps;
}
int main () {
	cin >> n >> m >> k;
	for (int i = 1;  i<= n ;i ++) {
		cin >> node[i].x >> node[i].y;
	}
	for (int i = 0; i < m ;i ++) {
		cin >> cir[i].r;
		cin >> cir[i].x >> cir[i].y;
	}
	for (int i = 1; i <= n ;i ++) {
		for (int j = 0; j < m; j ++) {
			st[i][j] = dist(i, j);
		}
	}
	while(k --) {
		int a, b;
		cin >> a >> b;
		cout << (st[a]^st[b]).count() << endl;	
	}
    return 0;
}

O(nk/32)用bitset表示状态 用stl优化

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值