zoj 3717 Balloon(二分+2-SAT)

题意:给出n个组,每组有两个球心,在每个组中选一个球心,然后选一个半径R,令这些球的半径为R,并且保证这些球不相交,求最大的半径R。

思路:二分枚举半径R,然后用2-SAT判定是否有解。由于每个组都要选,并且只能选一个,很容易能想到2-SAT模型,构图的时候只要枚举任意两个组,将两组之间的球心两两组合,如果这两个球心不能同时选中,则添加相应条件,然后跑2-SAT看有没有解就行了。

 

代码:

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<vector>
#define inf 0x3f3f3f3f
#define Inf 0x3FFFFFFFFFFFFFFFLL
#define eps 1e-9
#define pi acos(-1.0)
using namespace std;
typedef long long ll;
const int maxn=200+10;
const int maxm=1000000+10;
int dcmp(double x) {return (x>eps)-(x<-eps);}
struct Point
{
    double x, y, z;
    Point(double x=0, double y=0, double z=0):x(x),y(y),z(z){}
};
inline double Dis(const Point& a, const Point& b) { return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y)+(a.z-b.z)*(a.z-b.z));}
inline bool check(const Point& a, const Point& b, double r) {if(dcmp(Dis(a,b)-2*r)>=0) return true; return false;}
struct Edge
{
    int v,next;
};
struct TwoSat
{
    Edge edges[maxm];
    int head[maxn<<1],nEdge,n,m;
    int S[maxn<<1],c;
    bool mark[maxn<<2];
    void Init(int n)
    {
        this->n=n;
        memset(head,0xff,sizeof(head));
        nEdge=-1;
        memset(mark,0,sizeof(mark));
    }
    void AddEdge(int u,int v)
    {
        nEdge++;
        edges[nEdge].v=v;
        edges[nEdge].next=head[u];
        head[u]=nEdge;
    }
    void add_clause(int x,int xval,int y,int yval)
    {
        x=x*2+xval;
        y=y*2+yval;
        AddEdge(x^1,y);
        AddEdge(y^1,x);
    }
    bool dfs(int u)
    {
        if(mark[u^1]) return false;
        if(mark[u]) return true;
        S[c++]=u;
        mark[u]=true;
        for(int k=head[u];k!=-1;k=edges[k].next)
            if(!dfs(edges[k].v)) return false;
        return true;
    }
    bool solve()
    {
        for(int i=0;i<n*2;i+=2)
        {
            if(!mark[i]&&!mark[i+1])
            {
                c=0;
                if(!dfs(i))
                {
                    while(c>0) mark[S[--c]]=false;
                    if(!dfs(i+1)) return false;
                }
            }
        }
        return true;
    }
}twosat;
Point pt[maxn<<1];
int n;
bool test(double r)
{
    twosat.Init(n);
    for(int i=0;i<n;++i)
      for(int j=i+1;j<n;++j)
      {
          if(!check(pt[i*2],pt[j*2],r))
            twosat.add_clause(i,0,j,0);
          if(!check(pt[i*2],pt[j*2+1],r))
            twosat.add_clause(i,0,j,1);
          if(!check(pt[i*2+1],pt[j*2],r))
            twosat.add_clause(i,1,j,0);
          if(!check(pt[i*2+1],pt[j*2+1],r))
            twosat.add_clause(i,1,j,1);
      }
    return twosat.solve();
}
int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    while(~scanf("%d",&n))
    {
        for(int i=0;i<n;++i)
        {
            scanf("%lf%lf%lf",&pt[i*2].x,&pt[i*2].y,&pt[i*2].z);
            scanf("%lf%lf%lf",&pt[i*2+1].x,&pt[i*2+1].y,&pt[i*2+1].z);
        }
        double L=0,R=1e6;
        double m;
        while(dcmp(R-L)>0)
        {
            m=(L+R)/2;
            if(test(m))
              L=m;
            else R=m;
        }
        printf("%.8lf\n",L);
    }
    return 0;
}


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值