POJ 1493 Machined Surfaces

Machined Surfaces
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 2473   Accepted: 1588

Description

An imaging device furnishes digital images of two machined surfaces that eventually will be assembled in contact with each other. The roughness of this final contact is to be estimated.


A digital image is composed of the two characters, "X" and " " (space). There are always 25 columns to an image, but the number of rows, N, is variable. Column one (1) will always have an "X" in it and will be part of the left surface. The left surface can extend to the right from column one (1) as contiguous X's.


Similarly, column 25 will always have an "X" in it and will be part of the right surface. The right surface can extend to the left from column 25 as contiguous X's.

Digital-Image View of Surfaces
		 Left  		                           Right
 
 		 XXXX                                      XXXXX  ←1
 		 XXX                                     XXXXXXX
 		 XXXXX                                      XXXX
 		 XX                                       XXXXXX
 		 .                                             .
 		 .                                             .
 		 .                                             .
 		 XXXX                                       XXXX
 		 XXX                                       XXXXX  ←N
 		↑	       		                   ↑
 		1         			  	25
In each row of the image, there can be zero or more space characters separating the left surface from the right surface. There will never be more than a single blank region in any row.

For each image given, you are to determine the total ``void" that will exist after the left surface has been brought into contact with the right surface. The ``void" is the total count of the spaces that remains between the left and right surfaces after theyhave been brought into contact.

The two surfaces are brought into contact by displacing them strictly horizontally towards each other until a rightmost "X" of the left surface of some row is immediately to the left of the leftmost "X" of the right surface of that row. There is no rotation or twisting of these two surfaces as they are brought into contact; they remain rigid, and only move horizontally.

Note: The original image may show the two surfaces already in contact, in which case no displacement enters into the contact roughness estimation.

Input

The input consists of a series of digital images. Each image data set has the following format:

First line -
A single unsigned integer, N, with value greater than zero (0) and less than 13. The first digit of N will be the first character on a line.

Next N lines -
Each line has exactly 25 characters; one or more X's, then zero or more spaces, then one or more X's.

The end of data is signaled by a null data set having a zero on the first line of an image data set and no further data.

Output

For each image you receive as a data set, you are to reply with the total void (count of spaces remaining after the surfaces are brought into contact). Use the default output for a single integer on a line.

Sample Input

4
XXXX                XXXXX
XXX               XXXXXXX
XXXXX                XXXX
XX                 XXXXXX
2
XXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXX              XX
0

Sample Output

4
0
0

题意难以理解,不过看Sample Input和Sample Output可以猜出题意,就是把左边的积木平移到右边,看下有多少个空缺
一道水题,被freopen()黑了,WA两次啊啊啊啊啊啊啊啊啊啊!!!!!

 1 #include<stdio.h>
 2 
 3 int main()
 4 {
 5     int n,i,j,max,num[13],result;
 6     char s[13][26];
 7 
 8     while(scanf("%d",&n)==1)
 9     {
10         getchar();
11         if(!n)
12             break;
13         for(i=0,max=0;i<n;i++)
14         {
15             gets(s[i]);
16             for(j=0,num[i]=0;j<25;j++)
17                 if(s[i][j]=='X')
18                     num[i]++;
19             if(num[i]>max)
20                 max=num[i];
21         }
22         result=0;
23         for(i=0;i<n;i++)
24             result+=max-num[i];
25         printf("%d\n",result);
26     }
27 
28     return 0;
29 }
[C]

 

posted @ 2013-05-15 17:46  ~~Snail~~  阅读(162)  评论(0编辑  收藏  举报