您的位置:首页 > 大数据 > 人工智能

【CoderForces 501B】Misha and Changing Handles vector && pair

2016-09-25 15:07 507 查看
 Misha and Changing HandlesTime Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64uSubmit StatusDescriptionMisha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is already used or that was used at some point.Misha has a list of handle change requests. After completing the requests he wants to understand the relation between the original and the new handles of the users. Help him to do that.InputThe first line contains integer q (1 ≤ q ≤ 1000), the number of handle change requests.Next q lines contain the descriptions of the requests, one per line.Each query consists of two non-empty strings old and new, separated by a space. The strings consist of lowercase and uppercaseLatin letters and digits. Strings old and new are distinct. The lengths of the strings do not exceed 20.The requests are given chronologically. In other words, by the moment of a query there is a single person with handle old, and handlenew isnot used and has not been used by anyone.OutputIn the first line output the integer n — the number of users that changed their handles at least once.In the next n lines print the mapping between the old and the new handles of the users. Each of them must contain two strings, old andnew,separated by a space, meaning that before the user had handle old, and after all the requests are completed, his handle is new.You may output lines in any order.Each user who changes the handle must occur exactly once in this description.Sample InputInput
5
Misha ILoveCodeforces
Vasya Petrov
Petrov VasyaPetrov123
ILoveCodeforces MikeMirzayanov
Petya Ivanov
Output
3
Petya Ivanov
Misha MikeMirzayanov
Vasya VasyaPetrov123
代码:
#include<stdio.h>#include<algorithm>using namespace std;#include<string.h>#include<iostream>#include<vector>#include<string>#define f first#define s secondint main(){int q;vector< pair<string,string> >d;string a,b;scanf("%d",&q);while(q--){cin>>a>>b; //必须用c++的输入输出;bool flag=false;//每次循环都置0;for(int i=0;i<d.size();i++){if(d[i].s==a){d[i].s=b;flag=true;}}if(!flag)//如果不可以改名,就把它们形成一组;{d.push_back(make_pair(a,b));}}printf("%d\n",d.size());for(int i=0;i<d.size();i++){cout<<d[i].f<<" "<<d[i].s<<endl;}return 0;}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: