zoukankan      html  css  js  c++  java
  • 【ECJTU_ACM 11级队员2012年暑假训练赛(7) C Fire Net】

    C - Fire Net
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

    Description

    Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing a street or a piece of wall. 

    A blockhouse is a small castle that has four openings through which to shoot. The four openings are facing North, East, South, and West, respectively. There will be one machine gun shooting through each opening. 

    Here we assume that a bullet is so powerful that it can run across any distance and destroy a blockhouse on its way. On the other hand, a wall is so strongly built that can stop the bullets. 

    The goal is to place as many blockhouses in a city as possible so that no two can destroy each other. A configuration of blockhouses is legal provided that no two blockhouses are on the same horizontal row or vertical column in a map unless there is at least one wall separating them. In this problem we will consider small square cities (at most 4x4) that contain walls through which bullets cannot run through. 

    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 blockhouses 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 descri_ption of a map, calculates the maximum number of blockhouses that can be placed in the city in a legal configuration. 
     

    Input

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

    Output

    For each test case, output one line containing the maximum number of blockhouses that can be placed in the city 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
     
     
     
     1 #include <iostream>
     2 using namespace std;
     3 
     4 
     5 #define N 5
     6 
     7 int map[N][N], ans, m, n;
     8 bool visited[N][N], flag;
     9 
    10 void dfs(int s)
    11 {
    12     if(s==n*n)
    13     {
    14         if(ans<m) ans=m;
    15         return ;
    16     }
    17     int i,j,k;
    18     i=s/n;j=s%n;
    19     if(!visited[i][j])
    20     {
    21         flag=false;
    22         if(map[i][j]) flag=true;
    23         for(k=i-1;k>=0&&!flag;k--)
    24         {
    25             if(map[k][j]==1) break;
    26             if(visited[k][j]==true)
    27             {
    28                 flag=true;
    29                 break;
    30             }
    31         }
    32         for(k=j-1;k>=0&&!flag;k--)
    33         {
    34             if(map[i][k]==1) break;
    35             if(visited[i][k]==true)
    36             {
    37                 flag=true;
    38                 break;
    39             }
    40         }
    41         if(!flag)
    42         {
    43             m++;
    44             visited[i][j]=true;
    45             dfs(s+1);
    46             m--;
    47             visited[i][j]=false;
    48             dfs(s+1);
    49         }
    50         else
    51         {
    52             dfs(s+1);
    53         }
    54     }
    55 }
    56 
    57 
    58 int main()
    59 {
    60     int i, j;
    61     char t;
    62     while (cin >> n && n)
    63     {
    64         ans = m = 0;
    65         for (i = 0; i < n; i++)
    66         {
    67             for (j = 0; j < n; j++)
    68             {
    69                 cin >> t;
    70                 map[i][j] = (t == 'X');
    71                 visited[i][j] = false;
    72             }
    73         }
    74         dfs(0);
    75         cout << ans << endl;
    76     }
    77     return 0;
    78 }
    79 
    80 // end
    81 // ism
  • 相关阅读:
    mysql常用语句集锦
    PHP 面向对象
    PHP 数组
    PHP 语句 函数 字符串处理
    PHP 随笔
    mysql常用函数
    数据库 创建 查询 练习
    HTML JavaScript语法练习
    HTML JavaScript练习
    随机数生成的简单原理
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2624397.html
Copyright © 2011-2022 走看看