Misha and Changing Handles

Description

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.

Sample Input

Input
5
Misha ILoveCodeforces
Vasya Petrov
Petrov VasyaPetrov123
ILoveCodeforces MikeMirzayanov
Petya Ivanov
Output
3
Petya Ivanov
Misha MikeMirzayanov
Vasya VasyaPetrov123

思路:
逻辑层面没什么好想的,但是数据操作层面会出现很多的问题
(1)字符串数组的覆盖,如果被覆盖的字符串长度更长,则要在新字符串的后面加上'',不然容易出现奇怪的字母
(2)然后想思路的时候就不要局限在所给的数组,而要从题目的规则出发,自己构想出一般情况然后再从头开始推
(3)对于每个request的原始姓名而言,他每被修改一次,就给他压进栈一次,利用栈的原理和标记数组实现

#include <iostream>
#include <cstring>
#include <stack>
using namespace std;

struct R{
    char start[27];
    char end[27];
    int val;
}requests[1007];
stack<int> s;
int vis[1007];

void cover(char* str1,char* str2)
{
    int len = strlen(str2);
    for(int i = 0;i < len;i++)
        str1[i] = str2[i];
    str1[len] = '';
}

bool scmp(char* str1,char* str2)
{
    int len1 = strlen(str1);
    int len2 = strlen(str2);
    if(len1 != len2) return false;
    int flag = 0;
    for(int i = 0;i < len1;i++) 
        if(str1[i] == str2[i]) flag++;
    if(flag == len1) return true;
    else return false;
}

int main()
{
    int n;
    while(cin>>n)
    {
        int ans = 0;
        while(!s.empty())
            s.pop();
        memset(vis,0,sizeof(vis));
        for(int i = 1;i <= n;i++) 
        {
            cin>>requests[i].start>>requests[i].end;
            requests[i].val = 1;//i为起点 
            int flag = 0;
            for(int j = 1;j < i;j++) 
                if(requests[j].val && scmp(requests[i].start,requests[j].end)) {
                    cover(requests[j].end,requests[i].end);
                    requests[i].val = 0;
                    s.push(j);
                    flag = j;
                    break;
                }
            if(requests[i].val) {
                ans++;
                s.push(i);
            }
        }
        if(requests[n].val) s.push(n);
        cout<<ans<<endl;
        while(!s.empty()) {
            int tmp = s.top();
            s.pop();
            if(vis[tmp]) continue;
            cout<<requests[tmp].start<<' '<<requests[tmp].end<<endl;
            vis[tmp] = 1;
        }
        
    }
    return 0;
}
原文地址:https://www.cnblogs.com/immortal-worm/p/4990653.html