hdu 5301 Buildings (2015多校第二场第2题) 简单模拟

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5301

题意:给你一个n*m的矩形,可以分成n*m个1*1的小矩形,再给你一个坐标(x,y),表示黑格子在n*m矩形中的位置,黑格子占一个1*1的小矩形的空间,用各种矩形去填充n*m矩形,(x,y)位置不能填,且每个去填充的小矩形都有一边是靠着n*m矩形的外框,求这些填充的小矩形在最小大小情况下的面积最大的矩形面积。

思路:要是填充的矩形大小最小,那么靠近边框的长度一定为1,所以只要判断在矩形内部的长度大小即可,矩形面积即为在大矩形内部的长度。

代码:

 1 #include <cstdio>
 2 #include <cstdlib>
 3 #include <cmath>
 4 #include <cstring>
 5 #include <iostream>
 6 #include <queue>
 7 #include <algorithm>
 8 #include <vector>
 9 using namespace std;
10 #define LL __int64
11 
12 int main()
13 {
14     int n,m,x,y,i,s,a,b;
15     while(~scanf("%d%d%d%d",&n,&m,&x,&y))
16     {
17         if(n>m)
18         {
19             swap(n,m);
20             swap(x,y);
21         }
22         if(m==n&&n%2&&x==(n+1)/2&&y==(m+1)/2)
23         {
24             printf("%d\n",m/2);
25             continue;
26         }
27         x=min(x,n-x+1);
28         y=min(y,m-y+1);
29         s=(n+1)/2;
30         s=max(s,min(y,n-x));
31         printf("%d\n",s);
32     }
33     return 0;
34 }
View Code

 

posted @ 2015-07-24 14:05  星陨之泪  阅读(361)  评论(0编辑  收藏  举报