图解hdu5301Buildings

这个题就是给出一个大矩形n*m。当中有个1*1的小格子不能被占用,然后要你用非常多小矩形去填满。问小矩形的最小最大面积是多少。

显然小矩形必定是1*x的最好,毕竟i*x,若i>1则还是能够拆成非常多1*x。

显然若没有那个被占用的格子。那么答案就是min(n,m)+1>>1。

当考虑这个格子的时候,我们把矩形调整下,保证n<m,然后就非常显然,除了被格子占用的那一列j,其它的列k,不管k<j还是k>j必定至少有一个还是用(min(n,m)+1>>1)*1的矩形去竖着填最好,那么考虑仅仅有一个被这样的方案填了,那么还有一个肯定要用这样的方案或者考虑横着填。

这两种情况画出来就是这样:

上面的图,同一种颜色代表由相同的1*x的小矩形组成的部分,第一张图的左边是横着插。第二张图右边都是竖着插。

于是就能够非常显然的推出式子。另外再单独考虑n=m,且都是奇数,切被占格子在正中间的情况就可以。

#include<map>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<iostream>
#include<algorithm>
#include<bitset>
#include<climits>
#include<list>
#include<iomanip>
#include<stack>
#include<set>
using namespace std;
int a[10];
int main()
{
	int n,m,x,y;
	while(cin>>n>>m>>x>>y)
	{
		if(n==m&&(n&1)&&x==n+1>>1&&y==x)
		{
			cout<<(n+1>>1)-1<<endl;
			continue;
		}
		if(n>m)
		{
			swap(n,m);
			swap(x,y);
		}
		a[0]=x-1;
		a[1]=n-x;
		a[2]=y;
		a[3]=m-y+1;
		a[4]=n+1>>1;
		int ans=max(a[4],min(max(a[0],a[1]),min(a[2],a[3])));
		cout<<ans<<endl;
	}
}

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)

Total Submission(s): 1237    Accepted Submission(s): 335

Problem Description

Your current task is to make a ground plan for a residential building located in HZXJHS. So you must determine a way to split the floor building with walls to make apartments in the shape of a rectangle. Each built wall must be paralled to the building‘s sides.

The floor is represented in the ground plan as a large rectangle with dimensions ,
where each apartment is a smaller rectangle with dimensions  located
inside. For each apartment, its dimensions can be different from each other. The number  and  must
be integers.

Additionally, the apartments must completely cover the floor without one  square
located on .
The apartments must not intersect, but they can touch.

For this example, this is a sample of .

To prevent darkness indoors, the apartments must have windows. Therefore, each apartment must share its at least one side with the edge of the rectangle representing the floor so it is possible to place a window.

Your boss XXY wants to minimize the maximum areas of all apartments, now it‘s your turn to tell him the answer.

Input

There are at most  testcases.

For each testcase, only four space-separated integers, .

Output

For each testcase, print only one interger, representing the answer.

Sample Input

2 3 2 2
3 3 1 1

Sample Output

1
2

Hint

Case 1 :

You can split the floor into five  apartments. The answer is 1.

Case 2:

You can split the floor into three  apartments and two  apartments. The answer is 2.


If you want to split the floor into eight  apartments, it will be unacceptable because the apartment located on (2,2) can‘t have windows.

Source

2015 Multi-University Training Contest 2

时间: 2024-10-10 16:55:56

图解hdu5301Buildings的相关文章

《C#图解教程》读书笔记之三:方法

本篇已收录至<C#图解教程>读书笔记目录贴,点击访问该目录可获取更多内容. 一.方法那些事儿 (1)方法的结构:方法头-指定方法的特征,方法体-可执行代码的语句序列: (2)方法的调用:参数.值参数.引用参数.输出参数.参数数组: ①参数: 形参-本地变量,声明在参数列表中:形参的值在代码开始之前被初始化: 实参-实参的值用于初始化形参: ②值参数: 为形参在栈上分配内存,将实参的值复制到形参: ③引用参数: 不为形参在栈上分配内存,形参的参数名作为实参变量的别名指向同一位置,必须使用ref关

《C#图解教程》读书笔记之五:委托和事件

本篇已收录至<C#图解教程>读书笔记目录贴,点击访问该目录可获取更多内容. 一.委托初窥:一个拥有方法的对象 (1)本质:持有一个或多个方法的对象:委托和典型的对象不同,执行委托实际上是执行它所"持有"的方法.如果从C++的角度来理解委托,可以将其理解为一个类型安全的.面向对象的函数指针. (2)如何使用委托? ①声明委托类型(delegate关键字) ②使用该委托类型声明一个委托变量 ③为委托类型增加方法 ④调用委托执行方法 (3)委托的恒定性: 组合委托.为委托+=增加

ESXI6.5 最新版尝鲜安装图解

ESXI6.5安装图解

基于四元数的姿态解算算法图解

下面的两个地址是我存放在百度云网盘的附件,分别是基于四元数的互补滤波法的图解和梯度下降法的图解.笔者采用MindManager思维导图软件对上述两种算法进行详细的解释,非常形象. 希望这种方式能够让大家快速.准确的理解这两种算法的流程. 互补滤波法: http://pan.baidu.com/s/1c0b8qJ2 梯度下降法: http://pan.baidu.com/s/1sjI1l5F

【图解】javaScript组成结构

[图解]javaScript组成结构,布布扣,bubuko.com

【超实用】图解--如何使用本地的dtd文件映射

以前一直很苦恼,如果电脑上不了网,就比较麻烦了,自己在配置HIbernate的属性的时候,不知道属性名有没有写错.. 现在和大家分享一下,毕竟自己痛苦过了,大家不要和我一样痛苦. [超实用]图解--如何使用本地的dtd文件映射,布布扣,bubuko.com

【图解】VMware VCSA 6.5 安装部署

什么是vCSA?vCSA是一台预装了vCenter的SUSE Linux虚拟机.使用vCSA可以用来快速搭建自己的vCenter而节省大量的时间与工作量. 一.安装前准备工作 1.下载Vcsa 6.5安装包,6.5安装包仅有一个OVA文件. 2.准备Vmware虚拟化资源. 二.图解安装步骤: 1.建立VCSA虚拟机 2.选择OVA文件 3.选择存储位置 4.许可协议 7.选择部署类型(规模) 8.其他设置 a.网络配置 b.SSO(单点登录)目录密码 c.系统管理密码 d.用户体验计划 e.网

Idea破解步骤图解

Idea破解步骤图解 ? ? 准备安装文件 ? 准备文件路径 ? ? 开始安装步骤 ? ? ? ? ? ? ? ThisCrackLicenseId-{ "licenseId":"ThisCrackLicenseId", "licenseeName":"idea", "assigneeName":"", "assigneeEmail":"[email pro

《C#图解教程》读书笔记之四:类和继承

本篇已收录至<C#图解教程>读书笔记目录贴,点击访问该目录可获取更多内容. 一.万物之宗:Object (1)除了特殊的Object类,其他所有类都是派生类,即使他们没有显示基类定义. (2)一个派生类只能有一个基类,叫做单继承. 二.基类那点事儿 (1)如何在派生类中访问基类成员?使用base关键字,如base.Field1: (2)如何屏蔽基类中某个方法或成员?在派生类定义的成员定义前使用new关键字: (3)如何使用基类的引用?这里可以借鉴里氏替换法则,创建指向派生类的基类对象. 三.小