zoukankan      html  css  js  c++  java
  • POJ 1315 Don't Get Rooked

    Don't Get Rooked
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 2086   Accepted: 1325

    Description

    In chess, the rook is a piece that can move any number of squares vertically or horizontally. In this problem we will consider small chess boards (at most 4x4) that can also contain walls through which rooks cannot move. The goal is to place as many rooks on a board as possible so that no two can capture each other. A configuration of rooks is legal provided that no two rooks are on the same horizontal row or vertical column unless there is at least one wall separating them. 

    The following image shows five pictures of the same board. The first picture is the empty board, the second and third pictures show legal configurations, and the fourth and fifth pictures show illegal configurations. For this board, the maximum number of rooks in a legal configuration is 5; the second picture shows one way to do it, but there are several other ways. 

    Your task is to write a program that, given a description of a board, calculates the maximum number of rooks that can be placed on the board in a legal configuration. 

    Input

    The input contains one or more board descriptions, followed by a line containing the number 0 that signals the end of the file. Each board description begins with a line containing a positive integer n that is the size of the board; n will be at most 4. The next n lines each describe one row of the board, with a '.' indicating an open space and an uppercase 'X' indicating a wall. There are no spaces in the input.

    Output

    For each test case, output one line containing the maximum number of rooks that can be placed on the board in a legal configuration.

    Sample Input

    4
    .X..
    ....
    XX..
    ....
    2
    XX
    .X
    3
    .X.
    X.X
    .X.
    3
    ...
    .XX
    .XX
    4
    ....
    ....
    ....
    ....
    0
    

    Sample Output

    5
    1
    5
    2
    4
    题目大意:在一个有着可以阻碍攻击的墙的棋盘上摆放车,使其相互之间不能攻击,输出能够摆放车的最大数量。
    解题方法:用DFS直接暴搜。
    #include <stdio.h>
    #include <iostream>
    #include <string.h>
    using namespace std;
    
    int ans;
    char maze[10][10];
    int visited[10][10];
    int n;
    
    void DFS(int sum)
    {
        ans = max(ans, sum);
        for (int i = 0; i < n; i++)
        {
            for (int j = 0; j < n; j++)
            {
                bool bflag = true;
                for (int k = i; k < n; k++)
                {
                    if (visited[k][j])
                    {
                        bflag = false;
                        break;
                    }
                    else
                    {
                        if (maze[k][j] == 'X')
                        {
                            break;
                        }
                    }
                }
                for (int k = i - 1; k >= 0; k--)
                {
                    if (visited[k][j])
                    {
                        bflag = false;
                        break;
                    }
                    else
                    {
                        if (maze[k][j] == 'X')
                        {
                            break;
                        }
                    }
                }
                for (int k = j; k < n; k++)
                {
                    if (visited[i][k])
                    {
                        bflag = false;
                        break;
                    }
                    else
                    {
                        if (maze[i][k] == 'X')
                        {
                            break;
                        }
                    }
                }
                for (int k = j - 1; k >= 0; k--)
                {
                    if (visited[i][k])
                    {
                        bflag = false;
                        break;
                    }
                    else
                    {
                        if (maze[i][k] == 'X')
                        {
                            break;
                        }
                    }
                }
                if (bflag && maze[i][j] != 'X')
                {
                    visited[i][j] = 1;
                    DFS(sum + 1);
                    visited[i][j] = 0;
                }
            }
        }
    }
    
    int main()
    {
        while(cin>>n)
        {
            if (n == 0)
            {
                break;
            }
            ans = 0;
            for (int i = 0; i < n; i++)
            {
                cin>>maze[i];
            }
            memset(visited, 0, sizeof(visited));
            DFS(0);
            printf("%d
    ", ans);
        }
        return 0;
    }
  • 相关阅读:
    103、服务器出现大量close_wait的连接的原因是什么?有什么解决方法?
    102、常见的HTTP状态码有哪些?
    rpm包管理、yum源及创建本地仓库(同步华为源)
    文件管理之:输出与重定向echo
    高级权限--acl, mask,文件属性权限;su切换用户,sudo提权
    基本权限;权限对⽂件or⽬录的意义;特殊权限;文件权限之umask
    权限管理--用户介绍;用户与组相关文件;用户管理命令之用户创建、查看、删除、修改
    文件管理之:打包、压缩
    字符处理命令-sort排序,uniq去重,cut剪切文件,tr删除或替换结果集,wc统计
    上传与下载wget、curl、r z、s z
  • 原文地址:https://www.cnblogs.com/lzmfywz/p/3240249.html
Copyright © 2011-2022 走看看