OpenJ_POJ - 1043 Bomb!

二分爆炸半径,从第一个点开始 BFS,
这里用的double 储存坐标,相当于练一下浮点数二分了
其实再求两点间距离的时候可以不开根号,最后的时候开根号

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<queue>
#include<set>
#include<stack>
#include<algorithm>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
const int maxn = 1000 + 7, INF = 0x3f3f3f3f, mod = 1e9+7;
int T, tx, ty, n;
int vis[maxn];

struct node {
    double x, y;
}a[maxn];
queue<node> qu;
node k;

void init() {
    scanf("%lf%lf", &k.x, &k.y);
    scanf("%d", &n);
    for(int i = 0; i < n; ++i)
        scanf("%lf%lf", &a[i].x, &a[i].y);
}

double dis(node a, node b) {
    return sqrt((a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
}

bool bfs(double d) {
    while(!qu.empty()) qu.pop();
    qu.push(a[0]);

    memset(vis, 0, sizeof vis); vis[0] = 1;
    while(!qu.empty()) {
        node t = qu.front(); qu.pop();
        if(dis(t, k) <= d) return true;
        for(int i = 1; i < n; ++i) {
            if(!vis[i] && dis(t, a[i]) <= d) {
                qu.push(a[i]), vis[i] = 1;
            }
        }
    }
    return false;
}

void solve() {
    double l_ = 0.0, r_ = 10010000.0;
    while(l_ < r_ - 0.0001 ) {
        double mid = (l_ + r_) / 2.0;
        if(bfs(mid)) r_ = mid;
        else l_ = mid;
    }
    printf("%.2lf\n", r_);
}

int main() {
    cin >> T;
    while(T--) {
        init();
        solve();
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值