zoukankan      html  css  js  c++  java
  • hdu1507——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): 2114    Accepted Submission(s): 867
    Special Judge


    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 6 1 1 1 4 2 2 4 1 4 2 4 4 4 3 4 4 2 3 2 2 2 3 1 0 0
     

    Sample Output
    4 (1,2)--(1,3) (2,1)--(3,1) (2,3)--(3,3) (2,4)--(3,4) 3 (1,1)--(2,1) (1,2)--(1,3) (2,3)--(3,3)
     

    Source
     

    Recommend
    LL   |   We have carefully selected several similar problems for you:  1281 1528 1498 1533 1532 
     

    二分匹配。建边的根据是枚举全部可行的点,然后枚举周围四个方向。输出方案根据mark数组


    #include <map>
    #include <set>
    #include <list>
    #include <queue>
    #include <stack>
    #include <vector>
    #include <cmath>
    #include <cstdio>
    #include <cstring>
    #include <iostream>
    #include <algorithm>
    
    using namespace std;
    const int maxn = 10010;  
    struct node  
    {  
        int to;  
        int next;  
    }edge[4 * maxn];  
    
    int vis[maxn];
    int head[maxn];  
    int mark[maxn];  
    bool used[maxn];  
    bool mat[110][110];  
    int cnt[110][110];  
    int tot;  
    int n, m;  
    int index;  
      
    void addedge(int from, int to)  
    {  
        edge[tot].to = to;  
        edge[tot].next = head[from];  
        head[from] = tot++;   
    }  
      
    bool dfs(int x)  
    {  
        for (int i = head[x]; i != -1; i = edge[i].next)  
        {  
            if (!used[edge[i].to])  
            {  
                used[edge[i].to] = 1;  
                if (mark[edge[i].to] == -1 || dfs(mark[edge[i].to]))  
                {  
                    mark[edge[i].to] = x;
                    return true;  
                }  
            }  
        }  
        return false;  
    }  
      
    int hungary()  
    {  
        memset(mark, -1, sizeof(mark));  
        int ans = 0;  
        for (int i = 0; i < index; i++)  
        {  
            memset(used, 0, sizeof(used));  
            if (dfs(i))  
                ans++;  
        }  
        return ans;  
    }  
      
    int main()  
    {  
        int k;  
        while (~scanf("%d%d", &n, &m))  
        {  
        	if (!n && !m)
        	{
        		break;
        	}
        	scanf("%d", &k);
        	map<int, int>qu;
        	qu.clear();
            memset(head, -1, sizeof(head));  
            memset(mat, false, sizeof(mat)); 
            memset(vis, -1, sizeof(vis));
            tot=0;  
            int x, y;  
            for (int i = 0; i < k; i++)  
            {  
                scanf("%d%d", &x, &y);  
                x--;  
                y--; 
                mat[x][y] = true;  
            }  
            index = 0;  
            for (int i = 0; i < n; i++)  
                for (int j = 0; j < m; j++)  
                    if (!mat[i][j])  
                    {
                    	cnt[i][j] = index++; 
                    	qu[index - 1] = i * m + j;
                    }
                         
            for (int i = 0; i < n; i++)  
                for (int j = 0; j < m; j++)  
                {   
                    if (!mat[i][j])  
                    {  
                        if (i > 0 && !mat[i - 1][j])  
                            addedge(cnt[i][j], cnt[i - 1][j]);  
                        if (i < n-1 && !mat[i + 1][j])  
                            addedge(cnt[i][j], cnt[i + 1][j]);  
                        if (j > 0 && !mat[i][j - 1])  
                            addedge(cnt[i][j], cnt[i][j - 1]);  
                        if (j < m - 1 && !mat[i][j + 1])  
                            addedge(cnt[i][j], cnt[i][j + 1]);  
                    }  
                }  
            int res = hungary();  
            printf("%d
    ", res / 2);
            for (int i = 0; i < index; ++i)
            {
            	if (mark[i] != -1)
            	{
            		int a = qu[i];
            		int b = qu[mark[i]];
            		int x1 = a / m + 1;
            		int y1 = a % m + 1;
            		int x2 = b / m + 1;
            		int y2 = b % m + 1;
            		if (vis[a] == -1 && vis[b] == -1)
            		{
            			printf("(%d,%d)--(%d,%d)
    ", x1, y1, x2, y2);
            			vis[a] = b;
            			vis[b] = a;
            		}
            	}
            }
            printf("
    ");
        }  
        return 0;  
    } 


  • 相关阅读:
    一文读懂快速排序
    15道APP测试面试题分享,助攻你的面试
    APP测试之使用ADB可能遇到的错误及解决办法
    APP测试之Monkey压力测试(二)
    APP测试之Monkey压力测试(一)
    APP日志文件抓取及分析
    Linux环境安装python3
    visualvm 插件 visual gc 使用介绍
    设计模式之状态
    【深入理解JVM】:Java内存模型JMM
  • 原文地址:https://www.cnblogs.com/yangykaifa/p/6883970.html
Copyright © 2011-2022 走看看