ZOJ 1002 Fire Net 分析与解答

来源:互联网 发布:mysql insert date 编辑:程序博客网 时间:2024/05/12 16:40

Problem:

Fire Net

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.

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.

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......2XX.X3.X.X.X.X.3....XX.XX4................0

Sample output:

5 1 5 2 4

Analysis:

地图的每个位置有以下几种状态:

空闲(NO),墙(WALL),城堡(BLOCK),处于其他城堡射程.

遍历每一行,在每一行的两墙之间,寻找这样的位置,此位置若建设城堡,可及的视野最小。找到后,建设城堡,并标记其视野为“OCCPY(占用)“。在此行的下一个墙间间隔进行同样的操作,若没有这样的间隔,转向下一行,进行同样的操作。

Attention:

注意输入输出的格式要严格按照要求,否则submit后不会AC的.望上到处有这方面的帖子,OJ上也有教程.本人第一次提交,算法是正确的,因为输入输出格式提交了两次错误的代码.一定要认真审题.

上次的代码有逻辑错误,但在ZOJ和杭电OJ上都AC了。后来被我找到一个逻辑错误如下,若在以下情况:

.  .  .  .

.  .  .  .

XXX .

XXX .

 正确答案是3,在(1,1)(2,2),(3,4)建设城堡。

但错误程序的结果是2,因为按错误的逻辑,第一次便将城堡建设在(1,4)位置,第二个在(2,3),然后就没有然后了。

传说ZOJ上数据比较刁钻,但还是被我不小心钻了空子啦,这道题上其测试数据有点小问题啊^_^。修改后的程序也AC了,自己也找了许多数据测试过,是正确的,逻辑上也是正确的。代码比较长~

附上上次有错误的代码,以供参考:

 

 

Solution(C语言):

 


原创粉丝点击