codeforces #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 are nlines, each of them contains one word. All the words consist only of small English letters and their total length doesn't exceed 1000. 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
Note

In the first sample the optimal way to choose words is {'abb', 'aaa', 'bbb'}.

In the second sample the word 'cdecdecdecdecdecde' consists of three distinct letters, and thus cannot be used in the article. The optimal answer is {'a', 'a', 'aaaa'}.

 

昨天真是智商掉线。

首先对于单词中出现字母超过三个的肯定要排除掉,因为单词并不能分割。

然后用cnt1[]和cnt2[][]两个数组,分别统计当只有一个字母或者两个字母的时候,所有有该字母(或两个字母)的单词,对答案的贡献度(就是单词的长度)

  1 /*************************************************************************
  2     > File Name: code/cf/#329/A.cpp
  3     > Author: 111qqz
  4     > Email: rkz2013@126.com 
  5     > Created Time: 2015年11月05日 星期四 15时02分04秒
  6  ************************************************************************/
  7 
  8 #include<iostream>
  9 #include<iomanip>
 10 #include<cstdio>
 11 #include<algorithm>
 12 #include<cmath>
 13 #include<cstring>
 14 #include<string>
 15 #include<map>
 16 #include<set>
 17 #include<queue>
 18 #include<vector>
 19 #include<stack>
 20 #include<cctype>
 21                  
 22 #define lson l,m,rt<<1
 23 #define rson m+1,r,rt<<1|1
 24 #define ms(a,x) memset(a,x,sizeof(a))
 25 using namespace std;
 26 const int dx4[4]={1,0,0,-1};
 27 const int dy4[4]={0,-1,1,0};
 28 typedef long long LL;
 29 typedef double DB;
 30 const int inf = 0x3f3f3f3f;
 31 const int N=105;
 32 string st[N];
 33 int n;
 34 int cnt1[30],cnt2[30][30];
 35 int num[30];
 36 int main()
 37 {
 38   #ifndef  ONLINE_JUDGE 
 39    freopen("in.txt","r",stdin);
 40   #endif
 41 
 42    ms(cnt1,0);
 43    ms(cnt2,0);
 44    ms(num,0);
 45 
 46    scanf("%d",&n);
 47    for ( int i = 0  ; i < n ; i++)
 48     {
 49     cin>>st[i];
 50     int len = st[i].length();
 51     ms(num,0);
 52     for ( int j =  0 ;  j < len ; j++ )
 53     {
 54         int tmp =st[i][j]-'a';
 55         num[tmp]++;
 56     }
 57     int sum=0;
 58     for ( int j = 0 ; j < 26 ; j++)
 59     {
 60         if (num[j]) sum++;
 61     }
 62     if (sum>2) continue;
 63     if (sum==1)
 64     {
 65         int x1 = st[i][0]-'a';
 66         cnt1[x1] +=len;
 67     }
 68     if (sum==2)
 69     {
 70         int x1 = st[i][0]-'a';
 71         int x2;
 72         for ( int j = 1 ; j < len ; j++)
 73         {
 74         int tmp = st[i][j]-'a';
 75         if (tmp!=x1)
 76         {
 77             x2 = tmp;
 78             break;
 79         }
 80         }
 81         if (x1>x2) swap(x1,x2);
 82         cnt2[x1][x2]+=len;
 83     }
 84     }
 85     int ans = -1;
 86     int cur = 0 ;
 87     for ( int i = 0 ; i < 25 ; i++)
 88     for ( int j = i+1 ; j <26 ; j++ )
 89     {
 90         cur = cnt1[i]+cnt1[j] + cnt2[i][j];
 91         ans = max(ans,cur);
 92     }
 93     printf("%d\n",ans);
 94   
 95    
 96  #ifndef ONLINE_JUDGE  
 97   fclose(stdin);
 98   #endif
 99     return 0;
100 }

 

posted @ 2015-11-05 18:42  111qqz  阅读(176)  评论(0编辑  收藏  举报