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集合中 然后就是构建二部图 关键就是构图 然 ...
随机推荐
- 关于使用git和github的一点点感想
第二篇博客 首先附上我的第一个java程序github地址: https://github.com/KingsC123456/FirstJavaHello 其次是关于我的github介绍,因为一直使用 ...
- shell脚本获取文件中key/value的小方法
方法有N种,awk.sad.grep.cut... 以上几种方式不写了,就写两个不太常用到的. 废话少说,直接上代码: cat a.txt aa.gif=aaaa.gif bb.gif=bbbb.gi ...
- touch.js——常见应用操作
touch.js--常见应用操作 基本事件: touchstart //手指刚接触屏幕时触发 touchmove //手指在屏幕上移动时触发 touchend //手指从屏幕上移开时 ...
- js 操作数组(过滤对应数据)
过滤掉相应数据 var fileList = { "85968439868a92": [{name: 'food.jpeg'}, {name: 'ood.jpeg'}], &quo ...
- Java IO学习笔记(一)
一.概念 流是一组有顺序的,有起点和终点的字节集合,是对数据传输的总称或抽象.在两设备间的传输的数据称为流,流的本质是数据传输,根据数据传输特性将流抽象为各种类,以进行数据操作. 二.流分类 数据类型 ...
- append、extend与insert的区别
最近在自学Python语言,看到向列表增加更多数据时被append(),extend(),insert()方法绕晕了. 作为编程0基础的小白,觉得有必要自己再梳理一遍: 1.append()方法是指在 ...
- JQuery获取图片大小并控制图片文件上传大小以及上图片文件时如何预览图片
首先我们来看效果图: 点击上传之后如下: 在这里我获取到文件的大小,并且如果超出我设定的大小,则禁止上传! 不多说,上代码:先看div布局: <div class="imageCont ...
- PHP常用数组(Array)函数整理
整理了一份PHP开发中数组操作大全,包含有数组操作的基本函数.数组的分段和填充.数组与栈.数组与列队.回调函数.排序.计算.其他的数组函数等. 一.数组操作的基本函数 数组的键名和值 array_va ...
- 斐波那契数列第N项f(N)[矩阵快速幂]
矩阵快速幂 定义矩阵A(m*n),B(p*q),A*B有意义当且仅当n=p.即A的列数等于B的行数. 且C=A*B,C(m*q). 例如: 进入正题,由于现在全国卷高考不考矩阵,也没多大了解.因为遇到 ...
- node-Telnet
什么是Telnet(window系统) 使用Telnet工具作为客户端对创建的TCP服务器进行会话交流时遇到的问题做一个简单的记录.希望可以帮助到一些同学. 这里看一下百度词条的解释 Telnet协议 ...
