SDKD 2016 Summer Single Contest #02.B

Description
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 Input
Input
AbC
DCbA
Output
3 0
Input
ABC
abc
Output
0 3
Input
abacaba
AbaCaBA
Output
3 4
题目:
这种想法应该会的,当时就是没这么想~哎.
当时直接循环的,

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <string>
#include <algorithm>
using namespace std;
const int maxn = 1000+10;
string s, t;
int a[maxn];
int b[maxn];
int main()
{
    memset(a, 0, sizeof(a));
    memset(b, 0, sizeof(b));
    cin >> s >> t;
    for(int i = 0; i < s.length(); i++)
        a[s[i]]++;
    for(int i = 0; i < t.length(); i++)
        b[t[i]]++;
    int y = 0;
    int w = 0;
    //相等
    for(int i = 'A'; i <= 'z'; i++)
    {
        int n = min(a[i], b[i]);
        a[i] -= n;
        b[i] -= n;
        y += n;
    }
    //a ---- A
    for(int i = 'a'; i <= 'z'; i++)
    {
        int n = min(a[i], b[i - 32]);
        a[i] -= n;
        b[i - 32] -= n;
        w += n;
    }
    A ---- a
    for(int i = 'A'; i <= 'Z'; i++)
    {
        int n = min(a[i], b[i + 32]);
        a[i] -= n;
        b[i + 32] -= n;
        w += n;
    }
    printf("%d %d\n", y, w);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值