zoukankan      html  css  js  c++  java
  • HDU-1045 Fire Net

    http://acm.hdu.edu.cn/showproblem.php?pid=1045

                                        Fire Net

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6756    Accepted Submission(s): 3829

    Problem 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 description 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 descriptions, followed by a line containing the number 0 that signals the end of the file. Each map description 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 #include<cstdio>
     3 #include<cstring>
     4 using namespace std;
     5 int n,c[10][10];
     6 char str[10][10];
     7 int map[10][10];
     8 int mmax;
     9 bool judge(int row,int col)   //判断是否可以放置
    10 {                                 //在遇到墙之前同行或同列上已放置,则不能再放
    11     int i;
    12    for(i=col-1;i>=0;i--)
    13     {
    14         if(map[row][i]==1) return false;
    15         if(str[row][i]=='X') break;
    16     }
    17 
    18     for(i=row-1;i>=0;i--)
    19     {
    20         if(map[i][col]==1) return false;
    21         if(str[i][col]=='X') break;
    22     }
    23 
    24     return true;
    25 }
    26 void dfs(int x,int y,int num)
    27 {
    28         if(x==n)
    29         {
    30             if(num>mmax)
    31                 mmax=num;
    32             return ;
    33         }
    34         else
    35         {
    36           //  printf("x=%d,y=%d,num=%d
    ",x,y,num);
    37             if(y<n)
    38             {
    39             if(str[x][y]=='.'&&judge(x,y))
    40              {
    41                 map[x][y]=1;
    42                 dfs(x,y+1,num+1);
    43                 map[x][y]=0;
    44              }
    45              dfs(x,y+1,num);
    46             }
    47             else
    48               dfs(x+1,0,num);
    49 
    50         }
    51 }
    52 int main()
    53 {
    54     while(~scanf("%d",&n))
    55     {
    56         int i;
    57         memset(map,0,sizeof(map));
    58         if(n==0)
    59             break;
    60         mmax=0;
    61         for(i=0; i<n; i++)
    62             scanf("%s",str[i]);
    63         dfs(0,0,0);
    64         printf("%d
    ",mmax);
    65     }
    66     return 0;
    67 }
     
  • 相关阅读:
    ssh2整合velocity出现Unable to find resource
    struts2之PreResultListener(转)
    Struts2源码浅析-请求处理(转)
    大型WEB网站架构深入分析
    大型网站技术架构探讨
    网易大型应用架构与实践
    二叉树及各种二叉树的应用
    centOS上安装MySQL5.7
    Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.elasticsearch.threadpool.ThreadPool
    elasticsearch的插件安装
  • 原文地址:https://www.cnblogs.com/cancangood/p/4161569.html
Copyright © 2011-2022 走看看