Codeforces Round #293 (Div. 2)——B——Tanya and Postcard

Little Tanya decided to present her dad a postcard on his Birthday. She has already created a message — string s of length n, consisting of uppercase and lowercase English letters. Tanya can't write yet, so she found a newspaper and decided to cut out the letters and glue them into the postcard to achieve string s. The newspaper contains string t, consisting of uppercase and lowercase English letters. We know that the length of string t greater or equal to the length of the string s.

The newspaper may possibly have too few of some letters needed to make the text and too many of some other letters. That's why Tanya wants to cut some n letters out of the newspaper and make a message of length exactly n, so that it looked as much as possible like s. If the letter in some position has correct value and correct letter case (in the string s and in the string that Tanya will make), then she shouts joyfully "YAY!", and if the letter in the given position has only the correct value but it is in the wrong case, then the girl says "WHOOPS".

Tanya wants to make such message that lets her shout "YAY!" as much as possible. If there are multiple ways to do this, then her second priority is to maximize the number of times she says "WHOOPS". Your task is to help Tanya make the message.

Input

The first line contains line s (1 ≤ |s| ≤ 2·105), consisting of uppercase and lowercase English letters — the text of Tanya's message.

The second line contains line t (|s| ≤ |t| ≤ 2·105), consisting of uppercase and lowercase English letters — the text written in the newspaper.

Here |a| means the length of the string a.

Output

Print two integers separated by a space:

  • the first number is the number of times Tanya shouts "YAY!" while making the message,
  • the second number is the number of times Tanya says "WHOOPS" while making the message.
Sample test(s)
input
AbC
DCbA
output
3 0
input
ABC
abc
output
0 3
input
abacaba
AbaCaBA
output
3 4
大意:统计两次,把第二个串当模板,用第一个串去比较,第一次记录相同的字母(符号和大小写相同),统计过的就拿出,第二次不管大小写,看字母是否一样。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
const int MAX = 222222;
char s[MAX], t[MAX],visit[MAX];
int main()
{
    int a[200];
    cin >> s >> t;
    int n,m;
    n = m = 0;
    memset(a,0,sizeof(a));
    int n1 = strlen(s);
    int n2 = strlen(t);
    memset(visit,0,sizeof(visit));
    for(int i = 0; i < n2; i++)
        a[t[i]]++;
    for(int i = 0 ; i< n1; i++){
       if(a[s[i]]){
         a[s[i]]--;
         n++;
         visit[i] = 1;
       }
    }
    for(int i = 0; i < n1 ; i++){
      if(visit[i]) continue;
      if(s[i] >= 'a'&&s[i] <='z'){
          if(a[s[i]-'a'+'A']){
           a[s[i]-'a'+'A']--;
           m++;
       }
      }
       else if(s[i] >='A'&&s[i] <= 'Z'){
            if(a[s[i]-'A'+'a']){
            a[s[i]-'A'+'a']--;
             m++;
            }
           }
      }
    printf("%d %d
",n,m);
 return 0;
}
View Code
 
原文地址:https://www.cnblogs.com/zero-begin/p/4350068.html