ZOJ 3603 Draw Something Cheat

本文介绍了一种在流行社交绘画游戏DrawSomething中的作弊方法。通过分析游戏机制,当玩家无法理解朋友绘制的图画时,可以通过重启游戏并记录字母变化来缩小正确单词的范围。文章提供了一个程序实现方案,帮助玩家自动化这一过程。

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



    Draw Something Cheat


Have you played Draw Something? It's currently one of the hottest social drawing games on Apple iOS and Android Devices! In this game, you and your friend play in turn. You need to pick a word and draw a picture for this word. Then your friend will be asked what the word is, given the picture you have drawn. The following figure illustrates a typical scenario in guessing the word.

word guessing in draw something

As you see, when guessing a word you will be given the picture and 12 letters. You must pick some of these letters to form a word that matches the picture. Each letter can only be used once. It is a lot of fun if your friend is a talented painter, but unfortunately some drawings from your friend are totally incomprehensible. After several times of becoming mad by the drawings, you find a way to cheat in the game.

In this game, letters not included in the correct answer are randomly generated. If you cannot find the correct answer when guessing, you can write down all the letters and restart the game. Then you would find some of these letters are changed. Of course these changed letters will never appear in the answer. By eliminating these letters you are a step closer to the answer.

So In this problem, you need to write a program to automate the cheating process. Given N strings of letters to the same picture, you need to eliminate as many letters as possible, and output the remaining letters.

Input

There are multiple test cases. The first line of the input is an integer T ≈ 1000 indicating the number of test cases.

Each test case begins with a positive integer N ≤ 20 indicating the number of times you have entered the game. Then N lines follow. Each line is a string of exactly 12 uppercase letters, indicating the candidate letters in one guess. It is guaranteed that the answer has at least 1 letter and has no more than 12 letters.

Output

For each test case, output the remaining letters in alphabet order after the process described above. One line for each test case.

Sample Input

2
2
ABCDEFGHIJKL
ABCDEFGHIJKL
2
SAWBCVUXDTPN
ZQTLFJYRCGAK

Sample Output

ABCDEFGHIJKL
ACT



a,用来存储答案,

b,用来存储当前字符出现的频率;

多个字符可出现多次




#include<iostream>
#include<stdio.h>  
#include<string.h>  
#include<stdlib.h>  
using namespace std;
char str[1000];
int main()
{
	int N;
	cin>>N;
	while(N--)
	{
		int n,i,j,b[26];
		int a[26];
		cin>>n;
		cin>>str;
		int len=strlen(str);
		memset(a,0,sizeof(a));
		for(i=0;i<len;i++)
		{
			a[str[i]-'A']++;
		}
		for(int k=1;k<n;k++)
		{
			cin>>str;
			len=strlen(str);
			memset(b,0,sizeof(b));
			for(i=0;i<len;i++)
			{
				b[str[i]-'A']++;
			}
			for(i=0;i<26;i++)
				a[i]=min(a[i],b[i]);//这里更新答案
		}
		for(i=0;i<26;i++)
			while(a[i]--)
				printf("%c",i+'A');
		cout<<endl;
	}
}
	







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值