Misha 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.
Input
The 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 uppercase Latin 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 handle new is not used and has not been used by anyone.
Output
In 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 and new, 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.
Examples
Input
5 Misha ILoveCodeforces Vasya Petrov Petrov VasyaPetrov123 ILoveCodeforces MikeMirzayanov Petya IvanovOutput
3 Petya Ivanov Misha MikeMirzayanov Vasya VasyaPetrov123Sponsor
利用map里面的count函数和erase函数。
count(a):判断a有没有在map的second里出现过,出现过返回1,未出现过返回0
erase(a):a为first,删除a对应的second
#include <iostream>
#include <cstdio>
#include <map>
#include <cstring>
using namespace std;
int main()
{
int n;
while(~scanf("%d",&n))
{
string a,b;
map<string,string> kk;
map<string,string>::iterator it;
for(int i = 0; i < n; i++)
{
cin >> a >> b;
if(kk.count(a)==0)
{
kk[a] = a;
}
kk[b] = kk[a];
kk.erase(a);
}
cout << kk.size() << endl;
for(it = kk.begin(); it != kk.end(); it++)
cout << it->second << ' ' << it->first << endl;
}
return 0;
}
该博客主要讨论了如何处理用户在网站上变更别名的情况。Misha成功黑入了一个网站并允许用户自由更改自己的别名,但条件是新的别名不能与已使用过的重复。博客内容涉及到了处理这些变更请求的算法,通过跟踪每个用户的旧别名和新别名的关系,最终确定了用户别名变更的完整映射。
627

被折叠的 条评论
为什么被折叠?



