Codehorses T-shirts(水题)

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Codehorses has just hosted the second Codehorses Cup. This year, the same as the previous one, organizers are giving T-shirts for the winners.

The valid sizes of T-shirts are either "M" or from 00 to 33 "X" followed by "S" or "L". For example, sizes "M", "XXS", "L", "XXXL" are valid and "XM", "Z", "XXXXL" are not.

There are nn winners to the cup for both the previous year and the current year. Ksenia has a list with the T-shirt sizes printed for the last year cup and is yet to send the new list to the printing office.

扫描二维码关注公众号,回复: 2572100 查看本文章

Organizers want to distribute the prizes as soon as possible, so now Ksenia is required not to write the whole list from the scratch but just make some changes to the list of the previous year. In one second she can choose arbitrary position in any word and replace its character with some uppercase Latin letter. Ksenia can't remove or add letters in any of the words.

What is the minimal number of seconds Ksenia is required to spend to change the last year list to the current one?

The lists are unordered. That means, two lists are considered equal if and only if the number of occurrences of any string is the same in both lists.

Input

The first line contains one integer nn (1≤n≤1001≤n≤100) — the number of T-shirts.

The ii-th of the next nn lines contains aiai — the size of the ii-th T-shirt of the list for the previous year.

The ii-th of the next nn lines contains bibi — the size of the ii-th T-shirt of the list for the current year.

It is guaranteed that all the sizes in the input are valid. It is also guaranteed that Ksenia can produce list bb from the list aa.

Output

Print the minimal number of seconds Ksenia is required to spend to change the last year list to the current one. If the lists are already equal, print 0.

Examples

input

Copy

3
XS
XS
M
XL
S
XS

output

Copy

2

input

Copy

2
XXXL
XXL
XXL
XXXS

output

Copy

1

input

Copy

2
M
XS
XS
M

output

Copy

0

Note

In the first example Ksenia can replace "M" with "S" and "S" in one of the occurrences of "XS" with "L".

In the second example Ksenia should replace "L" in "XXXL" with "S".

In the third example lists are equal.

PS:题意是说,每改一个字母花费1,但是有效字符串里不同的字符最多一个,所以直接记录不一样的字符串就行了。

AC代码:

#include <iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<string>
#include<map>
#include<cmath>
#include<set>
#include<vector>
const int maxn=5e5+5;
const int mod=1e9+7;
#define me(a,b) memset(a,b,sizeof(a))
typedef long long ll;
using namespace std;
multiset<string>s;
int main()
{
    string a;int n,sum=0;
    cin>>n;
    for(int i=0;i<n;i++)
    {
        cin>>a;
        s.insert(a);
    }
    for(int i=0;i<n;i++)
    {
        cin>>a;
        if(s.find(a)==s.end())
            sum++;
        else
            s.erase(s.find(a));
    }
    cout<<sum<<endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_41292370/article/details/81292746