Fire NetTime
limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)
Total submission (s): 7342 Accepted Submission (s): 4196
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 Input
4.X ... Xx...... 2XX. X3. X.x.x.x.3 .... Xx. XX4 .......... 0
Sample Output
51524
Sourcezhejiang University Local Contest 2001
Test instructions: Given a square map of the largest 4*4, there are walls (X) and open spaces (.). The cannon can be amplified in each clearing, but two cannons will attack each other if they are in the same row or column and there is no wall barrier between them, so they cannot exist simultaneously. How many cannons can I put up?
Solving the puzzle: two-point matching. The same line of continuous '. ' As a node, a collection, and the same column, a collection of B.
If there is an intersection in a B, add edge.
Accode:
#include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include < cstring> #include <queue> #include <cmath> #include <string> #define N 101010#define MAXN 10100# Define INF 1<<29using namespace Std;int un,vn;int linker[20];char mp[6][6];bool used[20];int mp1[6][6],mp2[6][6], Maze[6][6];int n,m;bool dfs (int u) {int V; for (v=1; v<=vn; v++) if (Maze[u][v]&&!used[v]) {used[v]=true; if (linker[v]==-1| | DFS (Linker[v])) {linker[v]=u; return true; }} return false;} int Hungary () {int res=0; int u; memset (LINKER,-1,SIZEOF (linker)); for (u=1; u<=un; u++) {memset (used,0,sizeof (used)); if (DFS (U)) res++; } return res; int main () {//freopen ("In.txt", "R", stdin); while (~SCANF ("%d", &n) &&n) {for (int i=0; i<n; i++) {scanf ("%s", Mp[i]); } int l1=1,l2=1; memset (mp1,0,sizeof MP1); memset (mp2,0,sizeof MP2); for (int i=0, i<n; i++) {for (int j=0; j<n; J + +) {if (mp1[i][j]) continue; if (mp[i][j]== ' X ') {mp1[i][j]=0; Continue } while (mp[i][j]== '. ') &&j<n) mp1[i][j]=l1,j++; l1++; } for (int j=0; j<n; J + +) {if (mp2[j][i]) continue; if (mp[j][i]== ' X ') {mp2[j][i]=0; Continue } while (mp[j][i]== '. ') &&j<n) mp2[j][i]=l2,j++; l2++; }} memset (Maze,0,sizeof maze); for (int i=0, i<n; i++) {for (int j=0; j<n; J + +) {if (mp[i][j]!= ' X ') {m Aze[mp1[i][j]][mp2[i][j]]=1; }}} Un=l1-1; vn=l2-1; int ans=hungary (); printf"%d\n", ans); } return 0;}
HDU 1045 Fire Net (binary match)