这题是二分+2SAT.

总结一下SAT题的特征。首先,可能会存在二选一的情况,然后会给出一些矛盾。据这些矛盾加边,再用SAT判定。

这一道题好像不能直接用printf("%0.3lf"),因为这个是四舍五入的,这道题好像不能四舍五入,只好选减去0.0005再按这个格式输出了。

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <stdlib.h>
#define oo 1000000007
#define eps 1e-4
using namespace std;
const int MAXN=;
const int MAXM=;
struct b{
int x,y,z;
}ball[MAXN];
double dis[MAXN][MAXN];
int head[MAXN],dfn[MAXN],low[MAXN],tot,stop,indx,belong[MAXN],pat;
int st[MAXN];
bool stack[MAXN];
int n;
struct e{
int u,v;
int next;
}edge[MAXM]; void addedge(int u,int v){
edge[tot].u=u;
edge[tot].v=v;
edge[tot].next=head[u];
head[u]=tot++;
} void tarjan(int u){
int v;
dfn[u]=low[u]=++indx;
st[stop++]=u;
stack[u]=true;
for (int e=head[u];e!=-;e=edge[e].next){
v=edge[e].v;
if (dfn[v]==) {
tarjan(v) ;
low[u] = min(low[u], low[v]) ;
}
else if (stack[v]) {
low[u] = min(low[u], dfn[v]) ;
}
}
if (dfn[u] == low[u]) {
pat++;
do{
v = st[--stop];
belong[v]=pat;
stack[v]=false;
}while(u!= v);
}
} bool slove(double leng){
int a,b; tot=; indx=; stop=; pat=-;
memset(head,-,sizeof(head));
for(int i=;i<n;i++){
a=i;
for(int j=i+;j<n;j++){
b=j;
if(leng*>dis[a*][b*]){
addedge(*a+,b*);
addedge(b*+,a*);
}
if(leng*>dis[a*][b*+]){
addedge(a*+,b*+);
addedge(b*,a*);
}
if(leng*>dis[a*+][b*]){
addedge(a*,b*);
addedge(b*+,a*+);
}
if(leng*>dis[a*+][b*+]){
addedge(a*,b*+);
addedge(b*,a*+);
}
}
}
memset(dfn,,sizeof(dfn));
memset(low,,sizeof(low));
memset(stack,false,sizeof(stack));
memset(belong,-,sizeof(belong));
for(int i=;i<*n;i++){
if(dfn[i]==){
tarjan(i);
}
}
bool flag=true;
for(int i=;i<n;i++){
if(belong[i*]==belong[i*+]){
flag=false;
break;
}
}
return flag;
} int main(){
double xi,yi,zi;
while(scanf("%d",&n)!=EOF){
for(int i=;i<*n;i++){
scanf("%d%d%d",&ball[i].x,&ball[i].y,&ball[i].z);
i++;
scanf("%d%d%d",&ball[i].x,&ball[i].y,&ball[i].z);
}
double high=oo,lown=; double tmp;
for(int i=;i<*n;i++){
for(int j=i;j<*n;j++){
xi=ball[i].x-ball[j].x;
yi=ball[i].y-ball[j].y;
zi=ball[i].z-ball[j].z;
tmp=sqrt(xi*xi+yi*yi+zi*zi);
dis[i][j]=dis[j][i]=tmp;
}
}
double ans;
while(lown<high-eps){
double mid=(high+lown)/;
if(slove(mid)){
ans=mid;
lown=mid;
}
else high=mid;
}
printf("%0.3lf\n",ans-0.0005);
}
return ;
}

ZOJ 3717的更多相关文章

  1. zoj 3717 - Balloon(2-SAT)

    裸的2-SAT,详见刘汝佳训练指南P-323 不过此题有个特别需要注意的地方:You should promise that there is still no overlap for any two ...

  2. ZOJ 3717 Balloon ( TLE )

    正解2-SAT. 我用DLX想搜一搜的,结果TLE了…… 没什么遗憾,最起码我尝试过了. 扔个代码留作纪念. #include <cstdio> #include <cstring& ...

  3. ZOJ 3717 二分+2-sat判定。

    好久没有2-sat了,此题当复习之用,二分求最大值+2-sat判断可行,此题主要跪于题意:The results should be rounded to three decimal places. ...

  4. ZOJ People Counting

    第十三届浙江省大学生程序设计竞赛 I 题, 一道模拟题. ZOJ  3944http://www.icpc.moe/onlinejudge/showProblem.do?problemCode=394 ...

  5. ZOJ 3686 A Simple Tree Problem

    A Simple Tree Problem Time Limit: 3 Seconds      Memory Limit: 65536 KB Given a rooted tree, each no ...

  6. ZOJ Problem Set - 1394 Polar Explorer

    这道题目还是简单的,但是自己WA了好几次,总结下: 1.对输入的总结,加上上次ZOJ Problem Set - 1334 Basically Speaking ac代码及总结这道题目的总结 题目要求 ...

  7. ZOJ Problem Set - 1392 The Hardest Problem Ever

    放了一个长长的暑假,可能是这辈子最后一个这么长的暑假了吧,呵呵...今天来实验室了,先找了zoj上面简单的题目练练手直接贴代码了,不解释,就是一道简单的密文转换问题: #include <std ...

  8. ZOJ Problem Set - 1049 I Think I Need a Houseboat

    这道题目说白了是一道平面几何的数学问题,重在理解题目的意思: 题目说,弗雷德想买地盖房养老,但是土地每年会被密西西比河淹掉一部分,而且经调查是以半圆形的方式淹没的,每年淹没50平方英里,以初始水岸线为 ...

  9. ZOJ Problem Set - 1006 Do the Untwist

    今天在ZOJ上做了道很简单的题目是关于加密解密问题的,此题的关键点就在于求余的逆运算: 比如假设都是正整数 A=(B-C)%D 则 B - C = D*n + A 其中 A < D 移项 B = ...

随机推荐

  1. ecshop类的解析2 json_encode和json_decode的具体实现

    在看ecshop源码时,看到json这个类,研究了一下,它是为了兼容低版本php而做出的类,是对php的数据和json转换时使用的. encode和decode函数是对json的操作,对应json_e ...

  2. win7下安装memcache

    Windows7 x64在Wamp集成环境下安装Memcache,步骤如下: 1.Memcached-win64 下载 (1)最新版本下载:http://blog.couchbase.com/memc ...

  3. Quartz实现执行任务记录数据库,方便计算任务的执行次数以及成功次数

    任务执行实体 /** * 任务执行情况详情 */ public class JobExecuteDetail implements Serializable{ /** * */ private sta ...

  4. POJ 1659 Havel-Hakimi定理

    关于题意和Havel-Hakimi定理,可以看看http://blog.csdn.net/wangjian8006/article/details/7974845 讲得挺好的. 我就直接粘过来了 [ ...

  5. javascript 核心概念(1)-数据类型

    语法 (1)到现在为止,大多数浏览器也还是支持到ECMAScript 第三版的标准. 核心概念就是一个语言的基本工作原理,涉及语法,操作符,数据类型. (2)javascript的一切--变量,函数名 ...

  6. Java数组!!!你知多少?

    这是一篇网上搜到的文章,对数组进行了充分的说明.楼主懂了数组的俩种初始化方式:静态初始化和动态初始化方式.(贴过来备用哦) 下面我带大家一起加深一下对Java数组的认识: 1.理解数组 数组也是一种数 ...

  7. ArcGIS API For Android Errors汇总

    API客户端异常错误的发生通常是由于不正确的方法参数,对象状态依赖,或网络条件. //*******推荐使用方法,按下Ctrl+F搜索错误代码,再查看与代码对应的解释.********// ArcGI ...

  8. Android开发笔记(12)——ListView & Adapter

    转载请注明:http://www.cnblogs.com/igoslly/p/6947225.html 下一章是关于ListFragment的内容,首先先介绍ListView的相关配置,理解ListF ...

  9. Project Management -- How to use GitHub with Git

    如何通过Git使用GitHub ——PM曾子轩 从未使用过Git 一.从官网下载Git 此部分略 二.用Git连接上GitHub(为保持完整性,此部分引用博客:https://www.cnblogs. ...

  10. MAVEN - 生命周期(1)

    三套生命周期:   MAVEN拥有三套互相独立的生命周期,分别是:clean.default和site. clean - 清理项目 default - 构建项目 site - 简历项目站点   这其中 ...