/*
poj1873 The Fortified Forest 凸包+枚举 水题
用小树林的木头给小树林围一个围墙
每棵树都有价值
求消耗价值最低的做法,输出被砍伐的树的编号和剩余的木料
若砍伐价值相同,则取砍伐数小的方案。
*/
#include<stdio.h>
#include<math.h>
#include <algorithm>
#include <vector>
using namespace std;
const double eps = 1e-8;
struct point
{
double x,y;
};
struct exinfo
{
int v,l;
}info[20];
int n;
point dian[20],zhan[20];
//////////////////////////////////////////////////
point *mo_dian;
double mo_distance(point p1,point p2)
{
return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));
}
double mo_xmult(point p2,point p0,point p1)//p1在p2左返回负,在右边返回正
{
return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y);
} bool mo_ee(double x,double y)
{
double ret=x-y;
if(ret<0) ret=-ret;
if(ret<eps) return 1;
return 0;
}
bool mo_gg(double x,double y) { return x > y + eps;} // x > y
bool mo_ll(double x,double y) { return x < y - eps;} // x < y
bool mo_ge(double x,double y) { return x > y - eps;} // x >= y
bool mo_le(double x,double y) { return x < y + eps;} // x <= y bool mo_cmp(point a,point b) // 第一次排序
{
if( mo_ee(a.y ,b.y ) )
return mo_ll(a.x, b.x);
return mo_ll(a.y,b.y);
}
bool mo_cmp1(point a,point b) // 第二次排序
{
double len = mo_xmult(b,mo_dian[0],a);
if( mo_ee(len,0.0) )
return mo_ll(mo_distance(mo_dian[0],a),mo_distance(mo_dian[0],b));
return mo_gg(len,0.0);
}
int mo_graham(int n,point *dian,point *stk)
{
int i,top=1;
mo_dian=dian;
sort(mo_dian,mo_dian+n,mo_cmp);
sort(mo_dian+1,mo_dian+n,mo_cmp1);
stk[0]=mo_dian[0];
stk[1]=mo_dian[1];
for(i=2;i<n;++i)
{
while(top>0&&mo_xmult(mo_dian[i],stk[top-1],stk[top])<=0) --top;
stk[++top]=mo_dian[i];
}
return top+1;
} ////////
void getpoint(int tree,point *dian,point *work,vector<int> &cut,int &n_cut,int &n_sheng,int &cutv,int &cutl)
{
cut.clear();
cutv=0;
cutl=n_sheng=n_cut=0;
int i;
for(i=0;i<n;++i)
{
if((1<<i)&tree)//cut
{ cut.push_back(i);
n_cut++;
cutv+=info[i].v;
cutl+=info[i].l;
}else
{
work[n_sheng++]=dian[i];
}
}
}
double zhou(point *dian,int n)
{
int i;
double ret=0;
for(i=0;i<n;++i)
{
ret+=sqrt(
(dian[(i+1)%n].x-dian[i].x)*(dian[(i+1)%n].x-dian[i].x)
+(dian[(i+1)%n].y-dian[i].y)*(dian[(i+1)%n].y-dian[i].y)
);
}
return ret;
}
int main()
{
int i,ncase=1;
while(scanf("%d",&n),n)
{
for(i=0;i<n;++i)
{
scanf("%lf%lf%d%d",&dian[i].x,&dian[i].y,&info[i].v,&info[i].l);
}
int maxofi=(1<<n)-1;
int cutvalue=999999999;
double l_sheng;
int cutn;
vector<int> cut;
vector<int> tempcut;
point work[20];
for(i=0;i<maxofi;++i)
{
int tempcutn,shengyun;
int tempcutv,cutl;
int ret;
double zhouchang;
getpoint(i,dian,work,tempcut,tempcutn,shengyun,tempcutv,cutl);
if(shengyun==1)
{
zhouchang=0;
}else if(shengyun==2)
{
zhouchang=mo_distance(work[0],work[1])*2;
}else
{
ret=mo_graham(shengyun,work,zhan);
zhouchang=zhou(zhan,ret);
} if(mo_ge(cutl,zhouchang))
{
if(tempcutv<cutvalue)
{
cutvalue=tempcutv;
l_sheng=cutl-zhouchang;
cut=tempcut;
cutn=tempcutn;
}else if(tempcutv==cutvalue&&tempcutn<cutn)
{
cutvalue=tempcutv;
l_sheng=cutl-zhouchang;
cut=tempcut;
cutn=tempcutn;
}
}
}
if(ncase!=1) printf("\n");
printf("Forest %d\n",ncase++);
printf("Cut these trees:");
int len=cut.size();
for(i=0;i<len;++i)
{
printf(" %d",cut[i]+1);
}
printf("\n");
printf("Extra wood: %.2lf\n",l_sheng);
}
return 0;
}

poj1873 The Fortified Forest 凸包+枚举 水题的更多相关文章

  1. Uva5211/POJ1873 The Fortified Forest 凸包

    LINK 题意:给出点集,每个点有个价值v和长度l,问把其中几个点取掉,用这几个点的长度能把剩下的点围住,要求剩下的点价值和最大,拿掉的点最少且剩余长度最长. 思路:1999WF中的水题.考虑到其点的 ...

  2. POJ 1873 The Fortified Forest [凸包 枚举]

    The Fortified Forest Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 6400   Accepted: 1 ...

  3. POJ 1873 The Fortified Forest(枚举+凸包)

    Description Once upon a time, in a faraway land, there lived a king. This king owned a small collect ...

  4. POJ 1873 UVA 811 The Fortified Forest (凸包 + 状态压缩枚举)

    题目链接:UVA 811 Description Once upon a time, in a faraway land, there lived a king. This king owned a ...

  5. POJ 1873 The Fortified Forest 凸包 二进制枚举

    n最大15,二进制枚举不会超时.枚举不被砍掉的树,然后求凸包 #include<stdio.h> #include<math.h> #include<algorithm& ...

  6. POJ 1873 - The Fortified Forest 凸包 + 搜索 模板

    通过这道题发现了原来写凸包的一些不注意之处和一些错误..有些错误很要命.. 这题 N = 15 1 << 15 = 32768 直接枚举完全可行 卡在异常情况判断上很久,只有 顶点数 &g ...

  7. HDU 1017 A Mathematical Curiosity (枚举水题)

    Problem Description Given two integers n and m, count the number of pairs of integers (a,b) such tha ...

  8. CodeForces 444C. DZY Loves Physics(枚举+水题)

    转载请注明出处:http://blog.csdn.net/u012860063/article/details/37509207 题目链接:http://codeforces.com/contest/ ...

  9. 方程的解——枚举&&水题

    题目 链接 给出方程组:$$\displaystyle \left\{\begin{aligned}11x + 13y + 17z = 2471 \\13x + 17y + 11z = 2739\en ...

随机推荐

  1. delphi xe5 android 控制蓝牙

    本文部分内容摘自: http://www.pclviewer.com/android/用以下代码中的接口实现控制蓝牙的开.关及详细信息 unit Androidapi.JNI.BluetoothAda ...

  2. 《JavaScript启示录》摘抄

    1.JavaScript预包装的9个原生的对象构造函数: Number(),String(),Boolean(),Object(),Array(),Function(),Data(),RegExp() ...

  3. ExtJS4.2学习(16)制作表单(转)

    鸣谢:http://www.shuyangyang.com.cn/jishuliangongfang/qianduanjishu/2013-12-10/188.html --------------- ...

  4. C# winform 弹出输入框

    Microsoft.VisualBasic.dll   引用using Microsoft.VisualBasic; string PM = Interaction.InputBox("提示 ...

  5. CV牛人牛事简介之一

    CV牛人牛事简介之一 [论坛按] 发帖人转载自:http://doctorimage.cn/2013/01/01/cv-intro-niubility/#6481970-qzone-1-83120-8 ...

  6. PHP漏洞全解(一)-PHP网站的安全性问题

    本文主要介绍针对PHP网站常见的攻击方式,包括常见的sql注入,跨站等攻击类型.同时介绍了PHP的几个重要参数设置.后面的系列文章将站在攻击者的角度,为你揭开PHP安全问题,同时提供相应应对方案. 针 ...

  7. routes.IgnoreRoute("{resource}.axd/{*pathInfo}")作用

    {resource}.axd 表示后缀名为.axd所有资源 如webresource.axd{*pathInfo} 表示所有路径 作用:使路由系统忽略处理ASP.NET的Web资源文件(WebReso ...

  8. jar包中的类如何读取包内和包外的配置文件

    最近将代码打包成jar包,关于如何处理读取配置文件的问题特此记录一下. out.properties a.jar -com -a.class -in.properties 如上所示,out.prope ...

  9. [jobdu]数组中出现次数超过一半的数字

    找到以后要再扫一遍确认. http://zhedahht.blog.163.com/blog/static/25411174201085114733349/ #include <iostream ...

  10. 快速扫描文本文件,统计行数,并返回每一行的索引位置(Delphi、C#)

    由项目需要,需要扫描1200万行的文本文件.经网友的指点与测试,发现C#与Delphi之间的差距并不大.不多说,列代码测试: 下面是Delphi的代码: //遍历文件查找回车出现的次数 functio ...