博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Buildings
阅读量:4984 次
发布时间:2019-06-12

本文共 2282 字,大约阅读时间需要 7 分钟。

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 n×m, where each apartment is a smaller rectangle with dimensions a×b located inside. For each apartment, its dimensions can be different from each other. The number a and b must be integers.

Additionally, the apartments must completely cover the floor without one 1×1 square located on (x,y). The apartments must not intersect, but they can touch.

For this example, this is a sample of n=2,m=3,x=2,y=2.

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 10000 testcases.

For each testcase, only four space-separated integers, n,m,x,y(1≤n,m≤108,n×m>1,1≤x≤n,1≤y≤m).

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 1×1 apartments. The answer is 1.

Case 2:

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

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

题意是尽量把n*m的区域划分为多个,然后求最大的区域的面积。

要分成多个那么每个区域都可以表示成1*k。先看若是没有那个黑格子的话,可以得知答案就是(min(n,m)+1)/2;
但是由黑格子,现在就看黑格子在那个位置是否会对答案产生影响,详情看代码。然后还有一点容易忽略的是当n和m相等且同为奇数的话,要看看黑格子是否在正中,在正中位置答案减一。。

#include
#include
#include
#include
using namespace std;int main(){ int x,y,a,b; while(scanf("%d %d %d %d",&x,&y,&a,&b)!=EOF) { if(x>y) { swap(x,y); swap(a,b); } //cout<
<<" "<<
ans&&a-1!=x-a)//若是大于则区域的划分有 变化 { int d=min(left,right); int c=max(up,down); //ANS++; //cout<
<< " "<
<

转载于:https://www.cnblogs.com/NaCl/p/9580209.html

你可能感兴趣的文章
一些常用的js,jquerry 样例
查看>>
Oracle PL/SQL 多重选择句
查看>>
tyvj1659中中救援队
查看>>
kubernetes学习:CKA考试题
查看>>
LINUX samba的安装使用
查看>>
CSS border 生成三角
查看>>
asp.net(c#)开发中的文件上传组件uploadify的使用方法(带进度条)
查看>>
7.STM32中GPIO理解
查看>>
base64 json
查看>>
设置定点数学属性
查看>>
自动化测试工具 Test Studio入门教程
查看>>
排序算法(一) —— 冒泡排序
查看>>
No.026:Remove Duplicates from Sorted Array
查看>>
SpringBoot项目的几种创建方式,启动、和访问
查看>>
解决"disabled". Expected Boolean, got Number with value 0
查看>>
OC--init,initialize,initWithCoder:,initWithFrame:各方法的区别和加载顺序
查看>>
Exponentiation
查看>>
本地jar上传到本地仓库
查看>>
四则运算C++带Qt界面版本,吾王镇楼。。。。。
查看>>
各种获取时间的方法包含各类时间格式
查看>>