HDU1045 Fire Net (DFS)

Source: Internet
Author: User

Title Link: 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): 8185 Accepted Submission (s): 4691

Problem Descriptionsuppose that we had a square city with straight streets. A map of a city are a square board with n rows and n columns, each representing a street or a piece of wall.
A blockhouse is a small castle it has four openings through which to shoot. The four openings is facing north, East, south, and West, respectively. There'll be a machine gun shooting through each opening.
Here we assume this a bullet is so powerful the it can run across any distance and destroy a blockhouse on its it. On the other hand, a wall are so strongly built that can stop the bullets.
The goal is-to-place as many blockhouses-a city as possible so, no, and can destroy each of the other. A configuration of blockhouses is legal provided that no, blockhouses is on the same horizontal row or vertical column In a map unless there are at least one wall separating them. In this problem we'll consider small square cities (at most 4×4) that contain walls through which bullets cannot run thr Ough.
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 PI Ctures Show illegal configurations. For this board, the maximum number of blockhouses in a legal configuration is 5; The second picture shows one-to-do it, but there is 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. Inputthe 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 an integer n that's the size of the city; N would be is at most 4. The next n lines each describe one row of the map, with a '. ' indicating an open space and a uppercase ' X ' indicating a W All.  There is no spaces in the input file. Outputfor each test case, output one line containing the maximum number of blockhouses so can be placed in the city in a Legal configuration. Sample input4.x ... Xx...... 2XX. X3. X.x.x.x.3 .... Xx. XX4 .......... 0 Sample Output51524 Test instructions: There is a picture n*n, there is a place in the picture "wall", and then put bullets inside, bullets can not be with bullets or peers (unless separated by the wall!). ), Q: How many bullets can I put up?
/*The idea: Violent Dfs, each point is first assumed to put bullets, and then determine whether to set up Dfs. However, in determining whether rows and columns are legal, is from small to large DFS, so only judge the front can! */#include<cstdio>#include<cstring>#include<algorithm>using namespacestd;Charpic[Ten][Ten];intans, N;intJudge (intRowintCol) {     for(inti=col-1; i>=0; i--)//determine the column in which    {        if(pic[row][i]=='a')return false; if(pic[row][i]=='X') Break; }     for(inti=row-1; i>=0; i--)//judge where the row    {        if(pic[i][col]=='a')return false; if(pic[i][col]=='X') Break; }    return true;}voidDfsintCurinttot) {    if(cur==n*N) {ans=max (ans, tot); return; }    Else    {        introw = cur/n;//This is a very interesting little trick.        intCol = cur%N; if(pic[row][col]=='.'&&Judge (Row, col)) {Pic[row][col]='a'; DFS (cur+1, tot+1); Pic[row][col]='.'; } DFS (cur+1, tot); }}intMain () { while(SCANF ("%d", &N) {memset (pic,0,sizeof(pic));  for(intI=0; i<n; i++) scanf ("%s", Pic[i]); Ans=0; DFS (0,0); printf ("%d\n", ans); }    return 0;}
View Code

However, the above code has a flaw, the front row and column pits can be reasonable. However, it may be unreasonable to place a bullet (with bullets and no walls) behind it. However, the data of this problem is very weak, so it can be too.

Although the following code is slightly slower than the above, it is still 0ms away. (The data size of this problem is really pro-people)

#include <cstdio>#include<cstring>#include<algorithm>using namespacestd;Charpic[Ten][Ten];intans, N;intJudge (intRowintCol) {     for(inti=n-1; i>=0; i--)//determine the column in which    {        if(pic[row][i]=='a')return false; if(pic[row][i]=='X') Break; }     for(inti=n-1; i>=0; i--)//judge where the row    {        if(pic[i][col]=='a')return false; if(pic[i][col]=='X') Break; }    return true;}voidDfsintCurinttot) {    if(cur==n*N) {ans=max (ans, tot); return; }    Else    {        introw = cur/n;//This is a very interesting little trick.        intCol = cur%N; if(pic[row][col]=='.'&&Judge (Row, col)) {Pic[row][col]='a'; DFS (cur+1, tot+1); Pic[row][col]='.'; } DFS (cur+1, tot); }}intMain () { while(SCANF ("%d", &N) {memset (pic,0,sizeof(pic));  for(intI=0; i<n; i++) scanf ("%s", Pic[i]); Ans=0; DFS (0,0); printf ("%d\n", ans); }    return 0;}

HDU1045 Fire Net (DFS)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.