HDU1045 Fire Net 【DFS】
Fire Net
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.
4 .X.. .... XX.. .... 2 XX .X 3 .X. X.X .X. 3 ... .XX .XX 4 .... .... .... .... 0
5 1 5 2 4
#include <stdio.h> #include <string.h> char map[5][5]; int n, power[5][5], maxSum, sum; void getFire(int x, int y) { int i; for(i = 0; x - i >= 0 && map[x-i][y] == '.'; ++i) ++power[x-i][y]; for(i = 0; x + i < n && map[x+i][y] == '.'; ++i) ++power[x+i][y]; for(i = 0; y - i >= 0 && map[x][y-i] == '.'; ++i) ++power[x][y-i]; for(i = 0; y + i < n && map[x][y+i] == '.'; ++i) ++power[x][y+i]; } void cancelFire(int x, int y) { int i; for(i = 0; x - i >= 0 && map[x-i][y] == '.'; ++i) --power[x-i][y]; for(i = 0; x + i < n && map[x+i][y] == '.'; ++i) --power[x+i][y]; for(i = 0; y - i >= 0 && map[x][y-i] == '.'; ++i) --power[x][y-i]; for(i = 0; y + i < n && map[x][y+i] == '.'; ++i) --power[x][y+i]; } bool check(int x, int y) { return x >= 0 && x < n && y >= 0 && y < n && map[x][y] != 'X'; } void DFS(int x, int y) { int i, j; for(i = x, j = y; i < n; ++i, j = 0){ for( ; j < n; ++j){ if(check(i, j) && !power[i][j]){ ++sum; getFire(i, j); DFS(i, j + 1); if(sum > maxSum) maxSum = sum; --sum; cancelFire(i, j); } } } } int main() { //freopen("stdin.txt", "r", stdin); int i; while(scanf("%d", &n), n){ for(i = 0; i < n; ++i) scanf("%s", map[i]); memset(power, 0, sizeof(power)); maxSum = sum = 0; DFS(0, 0); printf("%d\n", maxSum); } return 0; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。