• CodeForces 501B Misha and Changing Handles


    B. Misha and Changing Handles
    time limit per test:1 second
    memory limit per test256 megabytes:
    input:standard input
    output:standard output

    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 Ivanov
    Output
    3
    Petya Ivanov
    Misha MikeMirzayanov
    Vasya VasyaPetrov123


     1 #include <iostream>
     2 #include <string>
     3 #include <queue>
     4 #include <map>
     5 #include <set>
     6 #include <algorithm>
     7 using namespace std;
     8 map<string,string> ma;
     9 set<string> se;
    10 queue<string> que;
    11 int main()
    12 {
    13     int n,ans;
    14     string a,b;
    15     while(cin>>n){
    16         ans=0;
    17         for(int i=0;i<n;i++){
    18             cin>>a>>b;
    19             if(!se.count(a)){que.push(a); ans++;}
    20             se.insert(b);
    21             ma[a]=b;
    22         }
    23         cout<<ans<<endl;
    24         while(!que.empty()){
    25             a=que.front();  que.pop();
    26             b=ma[a];
    27             while(ma.count(b)){
    28                 b=ma[b];
    29             }
    30             cout<<a<<" "<<b<<endl;
    31         }
    32     }
    33 }
  • 相关阅读:
    银行存款利息
    oracle sql 为表创建序列和触发器
    Python socker/subprocess模块练习(ssh案例)
    Python socker模块练习(聊天案例)
    Python 文件上传案例
    文献管理软件Zotero配置及常用插件安装使用(转载)
    记一次jvm闲置,但是应用进程占用高内存
    maven versionsmavenplugin插件
    记录一次spring cglib代理导致空指针异常
    树莓派SD卡容量扩展的方法
  • 原文地址:https://www.cnblogs.com/cumulonimbus/p/5826847.html
Copyright © 2020-2023  润新知