Codeforces Beta Round #74 (Div. 2) / 90B African Crossword (模拟)

本文介绍了一种解决非洲填字游戏的方法,该方法通过交叉比较行和列中的字母来找出重复项,并去除这些重复字母以揭示隐藏单词。文章提供了一个简洁高效的C语言实现方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B. African Crossword
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

An African crossword is a rectangular table n × m in size. Each cell of the table contains exactly one letter. This table (it is also referred to as grid) contains some encrypted word that needs to be decoded.

To solve the crossword you should cross out all repeated letters in rows and columns. In other words, a letter should only be crossed out if and only if the corresponding column or row contains at least one more letter that is exactly the same. Besides, all such letters are crossed out simultaneously.

When all repeated letters have been crossed out, we should write the remaining letters in a string. The letters that occupy a higher position follow before the letters that occupy a lower position. If the letters are located in one row, then the letter to the left goes first. The resulting word is the answer to the problem.

You are suggested to solve an African crossword and print the word encrypted there.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 100). Next n lines contain m lowercase Latin letters each. That is the crossword grid.

Output

Print the encrypted word on a single line. It is guaranteed that the answer consists of at least one letter.

Sample test(s)
input
3 3
cba
bcd
cbc
output
abcd
input
5 5
fcofd
ooedo
afaoa
rdcdf
eofsf
output
codeforces

学英语:

When all repeated letters have been crossed out, we should write the remaining letters in a string.

当所有重复的字母都被划掉时,我们就把剩下的字母写到一个字符串里。


完整代码:

/*30ms,0KB*/

#include<cstdio>

int main()
{
	int n, m;
	scanf("%d%d", &n, &m);
	char arr[110][110];
	int i, j, k, f;
	for (i = 0; i < n; i++)
		scanf("%s", arr[i]);
	for (i = 0; i < n; i++)
	{
		for (j = 0; j < m; j++)
		{
			f = 0;
			for (k = 0; k < m; k++)
			{
				if (arr[i][j] == arr[i][k] && j != k)
				{
					f = 1;
					break;
				}
			}
			if (f != 1)
			{
				for (k = 0; k < n; k++)
				{
					if (arr[i][j] == arr[k][j] && i != k)
					{
						f = 1;
						break;
					}
				}
			}
			if (f != 1)
				putchar(arr[i][j]);
		}
	}
	putchar('\n');
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值