码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1024 SCOI2009 生日快乐 DFS

时间:2014-10-28 09:24:53      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:bzoj   bzoj1024   dfs   

题目大意:给定一块x*y的蛋糕,切n-1刀分成n块大小相同的块,只能平行于边界切,求长宽比最大值最小

虽然求最大值最小但是这题没必要二分答案……直接深搜就可以了

枚举切成的两块的面积比,横竖各切一次即可

本大爷读入读错了TLE半天……尼玛死的心都有啊

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
double DFS(int n,double x,double y)
{
	int i;
	double re=1e6;
	if(n==1)
		return exp(fabs(log(x/y)));
	for(i=1;i<<1<=n;i++)
		re=min(re,max(DFS(i,x/n*i,y),DFS(n-i,x-x/n*i,y)));
	for(i=1;i<<1<=n;i++)
		re=min(re,max(DFS(i,x,y/n*i),DFS(n-i,x,y-y/n*i)));
	return re;
}
int main()
{
	int n,x,y;
	cin>>x>>y>>n;
	printf("%.6lf\n", DFS(n,x,y) );
}


BZOJ 1024 SCOI2009 生日快乐 DFS

标签:bzoj   bzoj1024   dfs   

原文地址:http://blog.csdn.net/popoqqq/article/details/40535153

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!