Codeforces Round #329 (Div. 2)A. 2Char

A. 2Char
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Andrew often reads articles in his favorite magazine 2Char. The main feature of these articles is that each of them uses at most two distinct letters. Andrew decided to send an article to the magazine, but as he hasn't written any article, he just decided to take a random one from magazine 26Char. However, before sending it to the magazine 2Char, he needs to adapt the text to the format of the journal. To do so, he removes some words from the chosen article, in such a way that the remaining text can be written using no more than two distinct letters.

Since the payment depends from the number of non-space characters in the article, Andrew wants to keep the words with the maximum total length.

Input

The first line of the input contains number n (1 ≤ n ≤ 100) — the number of words in the article chosen by Andrew. Following aren lines, each of them contains one word. All the words consist only of small English letters and their total length doesn't exceed1000. The words are not guaranteed to be distinct, in this case you are allowed to use a word in the article as many times as it appears in the input.

Output

Print a single integer — the maximum possible total length of words in Andrew's article.

Sample test(s)
input
4
abb
cacc
aaa
bbb
output
9
input
5
a
a
bcbcb
cdecdecdecdecdecde
aaaa
output
6

題目大意:

     給一堆字符串由字母組成,問最多由兩種字母組成的字符串的最大長度和;

解題思路:

     簡單枚舉:

代碼:

#include "iostream"
#include "cstdio"
#include "algorithm"
#include "math.h"
#include "string"
#include "string.h"
using namespace std;
int len[30][30];
int num[30];
char str[1010];
int n;
int main(int argc, char* argv[])
{
	cin>>n;
	int temp1=-1,temp2=-1,temp3;
	int ans=0;
	for(int i=0;i<n;i++)
	{
		scanf(" %s",str);
		temp1=-1,temp2=-1;
		bool flag=true;
		for(int j=0;j<strlen(str);j++)
		{
			temp3=str[j]-'a';
			if(temp3==temp1||temp3==temp2)
				continue;
			else
			{
				if(temp1==-1)
					temp1=temp3;
				else if(temp2==-1)
					temp2=temp3;
				else
				{
					flag=false;
					break;
				}
			}
		}
		if(flag)
		{
			if(temp1!=-1&&temp2==-1)
				len[temp1][temp1]+=strlen(str);
			else if(temp1!=-1&&temp2!=-1)
			{
				len[temp1][temp2]+=strlen(str);
				len[temp2][temp1]+=strlen(str);
			}
		}
	}
	ans=-1;
	for(int i=0;i<26;i++)
	{
		for(int j=i+1;j<26;j++)
		{
			if(ans<len[i][j]+len[i][i]+len[j][j])
				ans=len[i][j]+len[i][i]+len[j][j];
		}
	}
	cout<<ans<<endl;
	return 0;
}



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章