Uncle Tom's Inherited Land*
Uncle Tom's Inherited Land* |
| Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
| Total Submission(s): 203 Accepted Submission(s): 132 |
|
Problem Description
Your old uncle Tom inherited a piece of land from his great-great-uncle. Originally, the property had been in the shape of a rectangle. A long time ago, however, his great-great-uncle decided to divide the land into a grid of small squares. He turned some of the squares into ponds, for he loved to hunt ducks and wanted to attract them to his property. (You cannot be sure, for you have not been to the place, but he may have made so many ponds that the land may now consist of several disconnected islands.)
Your uncle Tom wants to sell the inherited land, but local rules now regulate property sales. Your uncle has been informed that, at his great-great-uncle's request, a law has been passed which establishes that property can only be sold in rectangular lots the size of two squares of your uncle's property. Furthermore, ponds are not salable property. Your uncle asked your help to determine the largest number of properties he could sell (the remaining squares will become recreational parks). |
|
Input
Input will include several test cases. The first line of a test case contains two integers N and M, representing, respectively, the number of rows and columns of the land (1 <= N, M <= 100). The second line will contain an integer K indicating the number of squares that have been turned into ponds ( (N x M) - K <= 50). Each of the next K lines contains two integers X and Y describing the position of a square which was turned into a pond (1 <= X <= N and 1 <= Y <= M). The end of input is indicated by N = M = 0.
|
|
Output
For each test case in the input your program should first output one line, containing an integer p representing the maximum number of properties which can be sold. The next p lines specify each pair of squares which can be sold simultaneity. If there are more than one solution, anyone is acceptable. there is a blank line after each test case. See sample below for clarification of the output format.
|
|
Sample Input
4 4 |
|
Sample Output
4 |
|
Source
South America 2002 - Practice
|
|
Recommend
LL
|
/*
题意:给你一个n*m的方格矩阵,然后有k个方格内有鱼塘,给出你k个鱼塘的坐标,剩下的方格用1*2的小方格填满,问你最多能填多少个 初步思路:对剩下的小方格进行二分匹配,只有两个相邻的小方格才存在联系,能填满的最大数,就是二分的最大匹配数;
#超内存 因为开标记数组的时候把鱼塘也考虑进去了,所以开了一个10000*10000的数组,太大 改进:总共空格子最多有50个,只需要开一个50*50的数组就可以
*/
#include<bits/stdc++.h>
#define N 110
using namespace std;
int mapn[N][N];
int vis[N][N];
int vis2[N][N];
int n,m,k;
int x,y;
int dir[][]={{,},{-,},{,-},{,}};
struct node{
int x,y;
node(){}
node(int a,int b){
x=a;
y=b;
}
};
vector<node>point;
/***********************二分匹配模板**************************/
const int MAXN=;
int uN,vN; //u,v数目
int g[][];//编号是0~n-1的
int linker[MAXN];//记录匹配点i的匹配点是谁
bool used[MAXN];
bool dfs(int u)//回溯看能不能通过分手来进行匹配
{
int v;
for(v=;v<point.size();v++)
if(g[u][v]&&!used[v])
//如果有这条边,并且这条边没有用过
{
used[v]=true;
if(linker[v]==-||dfs(linker[v]))//如果这个点没有匹配过,并且能找到匹配点,那么就可以以这个边作为匹配点
{
linker[v]=u;
return true;
}
}
return false;
}
int hungary()//返回最大匹配数
{
int res=;
int u;
memset(linker,-,sizeof(linker));
for(u=;u<point.size();u++)
{
memset(used,,sizeof(used));
if(dfs(u))//如果这个点有匹配点
res++;
}
return res;
}
/***********************二分匹配模板**************************/
void init(){
memset(g,,sizeof g);
memset(mapn,,sizeof mapn);
memset(vis,,sizeof vis);
memset(vis2,,sizeof vis2);
point.clear();
}
bool ok(int x,int y){
if(x<||x>n||y<||y>m||mapn[x][y]) return true;
return false;
}
void match(){//将所有的小方格进行编号 for(int i=;i<=n;i++){//将所有的空方格存进vector中
for(int j=;j<=m;j++){
//cout<<mapn[i][j]<<" ";
if(mapn[i][j]==)
{
point.push_back(node(i,j));
vis2[i][j]=point.size()-;//记录这是第几个
//cout<<i<<" "<<j<<endl;
}
}
//cout<<endl;
}
//cout<<"point.size()="<<point.size()<<endl;
for(int i=;i<point.size();i++){
if(vis[point[i].x][point[i].y]==){
vis[point[i].x][point[i].y]=;
for(int k=;k<;k++){
int fx=point[i].x+dir[k][];
int fy=point[i].y+dir[k][];
if(ok(fx,fy)) continue;
g[i][vis2[fx][fy]]=;
vis[fx][fy]=;
}
}
}
// for(int i=0;i<point.size();i++){
// for(int j=0;j<point.size();j++){
// cout<<g[i][j]<<" ";
// }
// cout<<endl;
// }
}
int main(){
//freopen("in.txt","r",stdin);
while(scanf("%d%d",&n,&m)!=EOF&&(n+m)){
init();//初始化
scanf("%d",&k);
while(k--){
scanf("%d%d",&x,&y);
mapn[x][y]=;
}//标记鱼塘的位置
// for(int i=1;i<=n;i++){
// for(int j=1;j<=m;j++){
// cout<<mapn[i][j]<<" ";
// }
// cout<<endl;
// }
match();//进行空格的匹配
int cur=hungary();
printf("%d\n",cur);
for(int i=;i<point.size();i++){
if(linker[i]!=-){
printf("(%d,%d)--(%d,%d)\n",point[i].x,point[i].y,point[linker[i]].x,point[linker[i]].y);
}
}
printf("\n");
}
return ;
}
Uncle Tom's Inherited Land*的更多相关文章
- hdu-----(1507)Uncle Tom's Inherited Land*(二分匹配)
Uncle Tom's Inherited Land* Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (J ...
- HDU 1507 Uncle Tom's Inherited Land*(二分图匹配)
Uncle Tom's Inherited Land* Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (J ...
- Hdu 1507 Uncle Tom's Inherited Land* 分类: Brush Mode 2014-07-30 09:28 112人阅读 评论(0) 收藏
Uncle Tom's Inherited Land* Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (J ...
- HDU 1507 Uncle Tom's Inherited Land*(二分匹配,输出任意一组解)
Uncle Tom's Inherited Land* Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (J ...
- XTU 二分图和网络流 练习题 B. Uncle Tom's Inherited Land*
B. Uncle Tom's Inherited Land* Time Limit: 1000ms Memory Limit: 32768KB 64-bit integer IO format: %I ...
- HDU——T 1507 Uncle Tom's Inherited Land*
http://acm.hdu.edu.cn/showproblem.php?pid=1507 Time Limit: 2000/1000 MS (Java/Others) Memory Limi ...
- ZOJ1516 Uncle Tom's Inherited Land(二分图最大匹配)
一个经典的构图:对格子进行黑白染色,黑白的点分别作XY部的点. 这一题的边就是可以出售的单位面积2的土地,边的端点就是这个土地占用的X部和Y部的两个点. 这样就建好二分图,要求最多土地的答案显然是这个 ...
- HDU 1507 Uncle Tom's Inherited Land*
题目大意:给你一个矩形,然后输入矩形里面池塘的坐标(不能放东西的地方),问可以放的地方中,最多可以放多少块1*2的长方形方块,并输出那些方块的位置. 题解:我们将所有未被覆盖的分为两种,即分为黑白格( ...
- hdu1507 Uncle Tom's Inherited Land* 二分匹配
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1507 将i+j为奇数的构成x集合中 将i+j为偶数的构成y集合中 然后就是构建二部图 关键就是构图 然 ...
随机推荐
- node.js express mvc轻量级框架实践
本文记录的是笔者最近抽私下时间给朋友做的一个时时彩自动下注系统,比较简单,主要也是为了学习一下node.js. 其实逻辑没什么可以深谈的,主要是想说说这套代码结构.结构如下图: js的代码比较难以维护 ...
- ESC/POS打印控制命令
0x00. Command Notation [Name] The name of the command. [Format] ...
- 对redux的理解
redux原理 某公司有物流(actionType).电商(actionType).广告(actionType)3块业务,在公司财务系统(state)统一记录着三块业务分别赚取到的资金.某天,电商业 ...
- Mysql 基于 Amoeba 的 读写分离
首先说明一下amoeba 跟 MySQL proxy在读写分离的使用上面的区别: 在MySQL proxy 6.0版本 上面如果想要读写分离并且 读集群.写集群 机器比较多情况下,用mysql pro ...
- Java钉钉开发_01_开发前的准备
源码已上传GitHub:传送门 一.准备事项 1.1 一个能在公网上访问的项目: 参见:Java微信开发_02_本地服务器映射外网 1.2 一个钉钉账号 去注册 1.3 创建一个应用 登录钉钉后台 ...
- 网页meta标签总结
文章摘抄自网络. 参考文章:http://www.cnblogs.com/lpt1229/p/5628631.html http://blog.csdn.net/aiolos1111/article/ ...
- Java子线程中的异常处理(通用)
在普通的单线程程序中,捕获异常只需要通过try ... catch ... finally ...代码块就可以了.那么,在并发情况下,比如在父线程中启动了子线程,如何正确捕获子线程中的异常,从而进行相 ...
- 用mp3stego来加密与解密文件的几次尝试
用法来自实验吧的"Canon"隐写题目的灵感. 先来简单的聊一下这道题目,打开题目后发现了一个mp3文件,除此之外还有一枚压缩包.然而压缩包是加密的,看来我们需要通过解出来mp3里 ...
- Paint the Grid Again ZOJ - 3780 拓扑
Paint the Grid Again Time Limit: 2000MS Memory Limit: 65536KB 64bit IO Format: %lld & %llu [ ...
- 2014 Benelux Algorithm Programming Contest (BAPC 14)E
题目链接:https://vjudge.net/contest/187496#problem/E E Excellent Engineers You are working for an agency ...
