UVa 232 - Crossword Answers

跟227一样,也是昨晚看书时就有了思路,今天下午开始做的,建了a,b两个数组,a用来存放输入的内容,b用来判断是否为起始格或'*',最后输出。输出时,编号用 的是%3d差点忽略了,最后提交又差点忘删除文件重定向语句。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include <stdio.h>
#include <string.h>
#define maxn 20
int main()
{
char a[maxn][maxn];
int b[maxn][maxn];
int m,n,i,j,count,x=1,y,first=1;
while(1)
{
count=0;
scanf("%d",&m);
if(!m)
goto END;
if(first)
first=0;
else
printf("\n");
scanf("%d\n",&n);
for(i=0;i<m;i++)
{
for(j=0;j<n+1;j++)
{
a[i][j]=getchar();
}
}
for(i=0;i<maxn;i++)
{
for(j=0;j<maxn;j++)
{
b[i][j]=0;
}
}
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(a[i][j]!='*')
{
if(!i||!j)
{
b[i][j]=++count;
}
else if(a[i-1][j]=='*'||a[i][j-1]=='*')
{
b[i][j]=++count;
}
}
else
b[i][j]=-1;
}
}
printf("puzzle #%d:\n",x++);
printf("Across\n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(b[i][j]>0)
{
if(!j||b[i][j-1]==-1)
{
printf("%3d.",b[i][j]);
y=j;
while(a[i][y]!='*'&&y<n)
{
printf("%c",a[i][y]);
y++;
}
printf("\n");
}
}
}
}
printf("Down\n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(b[i][j]>0)
{
if(!i||b[i-1][j]==-1)
{
printf("%3d.",b[i][j]);
y=i;
while(a[y][j]!='*'&&y<m)
{
printf("%c",a[y][j]);
y++;
}
printf("\n");
}
}
}
}
}
END:
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **