程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 3622 Bomb Game (二分+2-SAT)

HDU 3622 Bomb Game (二分+2-SAT)

編輯:C++入門知識

HDU 3622 Bomb Game (二分+2-SAT)


題目地址:HDU 3622

先二分半徑,然後小於該半徑的不能選,對這些不能選的點對進行加邊。然後判斷可行性即可。

代碼如下:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;
const double eqs=1e-3;
int head[410], cnt, top, ans, index;
int dfn[410], low[410], instack[410], stak[410], belong[410];
struct node
{
    int u, v, next;
}edge[1000000];
struct Point
{
    int x, y;
}dian[10000];
void add(int u, int v)
{
    edge[cnt].v=v;
    edge[cnt].next=head[u];
    head[u]=cnt++;
}
void tarjan(int u)
{
    dfn[u]=low[u]=++index;
    instack[u]=1;
    stak[++top]=u;
    for(int i=head[u];i!=-1;i=edge[i].next)
    {
        int v=edge[i].v;
        if(!dfn[v])
        {
            tarjan(v);
            low[u]=min(low[u],low[v]);
        }
        else if(instack[v])
        {
            low[u]=min(low[u],dfn[v]);
        }
    }
    if(dfn[u]==low[u])
    {
        ans++;
        while(1)
        {
            int v=stak[top--];
            instack[v]=0;
            belong[v]=ans;
            if(u==v) break;
        }
    }
}
void init()
{
    memset(head,-1,sizeof(head));
    cnt=0;
    memset(dfn,0,sizeof(dfn));
    memset(instack,0,sizeof(instack));
    top=ans=index=0;
}
double dist(Point x, Point y)
{
    return sqrt((x.x-y.x)*(x.x-y.x)*1.0+(x.y-y.y)*(x.y-y.y));
}
int solve(double mid, int n)
{
    int i, j;
    init();
    for(i=0;ieqs)
        {
            mid=(l+r)/2;
            //printf("%.2lf\n",mid);
            if(solve(mid, n))
            {
                ans=mid;
                l=mid;
            }
            else
                r=mid;
        }
        printf("%.2lf\n",ans/2.0);
    }
    return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved