SDUT1500 Message Flood

以前做过的用的字典树,可是貌似现在再用超内存。。。。求解释。。。

问了LYN用的map函数做的,又去小小的学了map函数。。。。

http://wenku.baidu.com/view/0b08cece05087632311212ba.html感觉这个写的挺详细的

http://wenku.baidu.com/view/d140cfcca1c7aa00b52acb46.html这个的话挺有意思,帮助理解

题目描述

Well, how do you feel about mobile phone? Your answer would probably be something like that "It's so convenient and benefits people a lot". However, If you ask Merlin this question on the New Year's Eve, he will definitely answer "What a trouble! I have to keep my fingers moving on the phone the whole night, because I have so many greeting message to send!" Yes, Merlin has such a long name list of his friends, and he would like to send a greeting message to each of them. What's worse, Merlin has another long name list of senders that have sent message to him, and he doesn't want to send another message to bother them Merlin is so polite that he always replies each message he receives immediately). So, before he begins to send message, he needs to figure to how many friends are left to be sent. Please write a program to help him. Here is something that you should note. First, Merlin's friend list is not ordered, and each name is alphabetic strings and case insensitive. These names are guaranteed to be not duplicated. Second, some senders may send more than one message to Merlin, therefore the sender list may be duplicated. Third, Merlin is known by so many people, that's why some message senders are even not included in his friend list.

输入

There are multiple test cases. In each case, at the first line there are two numbers n and m (1<=n,m<=20000), which is the number of friends and the number of messages he has received. And then there are n lines of alphabetic strings(the length of each will be less than 10), indicating the names of Merlin's friends, one per line. After that there are m lines of alphabetic strings, which are the names of message senders. The input is terminated by n=0.

输出

For each case, print one integer in one line which indicates the number of left friends he must send.

示例输入

5 3
Inkfish
Henry
Carp
Max
Jericho
Carp
Max
Carp
0

示例输出

3

这个是代码

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<cstdlib>
 4 #include<map>
 5 #include<iostream>
 6 #include<algorithm>
 7 using namespace std ;
 8 int main()
 9 {
10    int m ;
11    while(scanf("%d",&m)&&(m != 0))
12    {
13        int n ;
14        cin>>n ;
15        map<string,int>mp ;
16        string sh ;
17        for(int i = 1 ; i <= m ; i++)
18        {
19            cin>>sh ;
20            transform(sh.begin(),sh.end(),sh.begin(),::tolower) ;
21            mp[sh] = 1 ;
22        }
23        for(int j = 1 ; j <= n ; j++)
24        {
25            cin>>sh ;
26            transform(sh.begin(),sh.end(),sh.begin(),::tolower) ;
27            if(mp[sh])
28            {
29                m--;
30                mp[sh] = 0 ;
31            }
32        }
33        cout<<m<<endl ;
34    }
35    return 0 ;
36 }
View Code
原文地址:https://www.cnblogs.com/luyingfeng/p/3161649.html