UVa232 - Crossword Answers

A crossword puzzle consists of a rectangular grid of black andwhite squares and two lists of definitions (or descriptions).One list of definitions is for “words” to be written left toright across white squares in the rows and the other list is forwords to be written down white squares in the columns. (Aword is a sequence of alphabetic characters.)To solve a crossword puzzle, one writes the words correspondingto the definitions on the white squares of the grid.The definitions correspond to the rectangular grid bymeans of sequential integers on “eligible” white squares.White squares with black squares immediately to the left orabove them are “eligible.” White squares with no squares eitherimmediately to the left or above are also “eligible.” No other squares are numbered. All of thesquares on the first row are numbered.The numbering starts with 1 and continues consecutively across white squares of the first row, thenacross the eligible white squares of the second row, then across the eligible white squares of the thirdrow and so on across all of the rest of the rows of the puzzle. The picture below illustrates a rectangularcrossword puzzle grid with appropriate numbering.An “across” word for a definition is written on a sequence of white squares in a row starting on anumbered square that does not follow another white square in the same row.The sequence of white squares for that word goes across the row of the numbered square, endingimmediately before the next black square in the row or in the rightmost square of the row.A “down” word for a definition is written on a sequence of white squares in a column starting on anumbered square that does not follow another white square in the same column.The sequence of white squares for that word goes down the column of the numbered square, endingimmediately before the next black square in the column or in the bottom square of the column.Every white square in a correctly solved puzzle contains a letter.You must write a program that takes several solved crossword puzzles as input and outputs the listsof across and down words which constitute the solutions.

Input

Each puzzle solution in the input starts with a line containing two integers r and c (1 ≤ r ≤ 10 and1 ≤ c ≤ 10), where r (the first number) is the number of rows in the puzzle and c (the second number)is the number of columns.The r rows of input which follow each contain c characters (excluding the end-of-line) which describethe solution. Each of those c characters is an alphabetic character which is part of a word or thecharacter ‘*’, which indicates a black square.The end of input is indicated by a line consisting of the single number ‘0’.

Output

Output for each puzzle consists of an identifier for the puzzle (puzzle #1:, puzzle #2:, etc.) and thelist of across words followed by the list of down words. Words in each list must be output one-per-linein increasing order of the number of their corresponding definitions.The heading for the list of across words is ‘Across’. The heading for the list of down words is ‘Down’.In the case where the lists are empty (all squares in the grid are black), the ‘Across’ and ‘Down’headings should still appear.Separate output for successive input puzzles by a blank line.


尽管原题的sample input和uDEBUG的sample input中单词都只有大写字母,但题目没有指定输入为大写字母,我在编写程序时自作主张的认定输入为大写字母,之后疯狂wa(手动笑哭)。以后不要犯想当然的错误。

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
//#define LOCAL

using namespace std;


char g[11][11];
int label[11][11];

int main()
{
#ifdef LOCAL
    freopen("data.in", "r", stdin);
    freopen("data.out", "w", stdout);
#endif // LOCAL
    int r, c, ii, jj;
    int ch;
    int kcase = 0;
    ii = 0;
    jj = 0;
    r = 0;
    c = 0;
    ch = 0;
    while(scanf("%d", &r) && r)
    {
        scanf("%d", &c);
        int counter = 0;
        //read the grid and label it
        memset(g, 0, sizeof(g));
        memset(label, 0, sizeof(label));
        for(int i=0; i<r; i++)
        {
            for(int j=0; j<c;)
            {
                ch = getchar();
                if(ch!='\n'&&ch!='*')
                {
                    g[i][j] = ch;
                    if(j-1<0 || i-1<0)
                        label[i][j] = ++counter;
                    else if((g[i-1][j]=='*') || (g[i][j-1]=='*'))
                        label[i][j] = ++counter;
                    else ;
                    j++;
                }
                else if(ch == '*')
                {
                    g[i][j] = ch;
                    label[i][j] = -1;
                    j++;
                }
                else ;  //read space or any other else, don't deal
            }
        }

        //output answer
        if(kcase)
            printf("\n");
        printf("puzzle #%d:\n", ++kcase);
        printf("Across\n");
        for(int i=0; i<r; i++)
        {
            for(int j=0; j<c; j++)
            {
                jj = j;
                if(jj-1<0 && label[i][jj]>0)
                {
                    printf("%3d.", label[i][jj]);
                    while(jj<c)
                    {
                        if(g[i][jj]=='*')
                            break;
                        printf("%c",g[i][jj]);
                        jj++;
                    }
                    printf("\n");
                }
                else if(label[i][jj-1] == -1 && label[i][jj]>0)
                {
                    printf("%3d.", label[i][jj]);
                    while(jj<c)
                    {
                        if(g[i][jj]=='*')
                            break;
                        printf("%c",g[i][jj]);
                        jj++;
                    }
                    printf("\n");
                }
            }
        }
        printf("Down\n");
        for(int i=0; i<r; i++)
        {
            for(int j=0; j<c; j++)
            {
                ii = i;
                if(ii-1<0 && label[ii][j]>0)
                {
                    printf("%3d.", label[ii][j]);
                    while(ii<r)
                    {
                        if(g[ii][j]=='*')
                            break;
                        printf("%c",g[ii][j]);
                        ii++;
                    }
                    printf("\n");
                }
                else if(label[ii-1][j] == -1 && label[ii][j]>0)
                {
                    printf("%3d.", label[ii][j]);
                    while(ii<r)
                    {
                        if(g[ii][j]=='*')
                            break;
                        printf("%c",g[ii][j]);
                        ii++;
                    }
                    printf("\n");
                }
            }
        }
         //printf("\n");
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值