当前位置: 首页 > 工具软件 > t-shirts > 使用案例 >

CodeForces 1000A Codehorses T-shirts

徐涵亮
2023-12-01

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 0 to 3 “X” followed by “S” or “L”. For example, sizes “M”, “XXS”, “L”, “XXXL” are valid and “XM”, “Z”, “XXXXL” are not.

There are n 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.

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 n (1≤n≤100) — the number of T-shirts.

The i-th of the next n lines contains ai — the size of the i-th T-shirt of the list for the previous year.

The i-th of the next n lines contains bi — the size of the i-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 b from the list a.

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
3
XS
XS
M
XL
S
XS
Output
2
Input
2
XXXL
XXL
XXL
XXXS
Output
1
Input
2
M
XS
XS
M
Output
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.
水题
不过题意有点坑,本质上就是找和去年不同d的,所以就很简单了
思路:开一个string数组,用来储存去年的尺码,然后输入今年的,比较,如果相同,就count++,与此同时,为保证用过的不在重复计入,我们就把用过的换掉,最后输出n-count就是答案。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s1[101],str;
	int n,flag=0;
	cin>>n;
	for(int i=0;i<n;i++)
	cin>>s1[i];
	for(int i=0;i<n;i++)
	{
	    cin>>str;
        for(int i=0;i<n;i++)
	    {
		if(str==s1[i])
		{
			flag++;
			s1[i]='0';
			break;
		}
	    } 
    }
	cout<<n-flag;
    return 0;
} 
 类似资料:

相关阅读

相关文章

相关问答