Codeforces Round #400 (Div. 1 + Div. 2, combined) 776A A Serial Killer

来源:互联网 发布:impacket python 编辑:程序博客网 时间:2024/05/29 18:44

时间限制:1S / 空间限制:256MB

【在线测试提交传送门】

【问题描述】

    Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim.The killer starts with two potential victims on his first day, selects one of these two, kills selected victim and replaces him with a new person. He repeats this procedure each day. This way, each day he has two potential victims to choose from. Sherlock knows the initial two potential victims. Also, he knows the murder that happened on a particular day and the new person who replaced this victim.You need to help him get all the pairs of potential victims at each day so that Sherlock can observe some pattern.  杀手有一个谋杀计划,每天都有两个潜在的受害者。每一天,他会选中杀死其中的一人,并用另外一个人代替这个被杀死的人。  侦探知道初始的两个潜在谋杀对象的名字,也知道接下来每一天的被杀对象和替换者。  请输出每一天的潜在受害者。

【输入格式】

First line of input contains two names (length of each of them doesn't exceed 10), the two initials potential victims. Next line contains integer n (1 ≤ n ≤ 1000), the number of days.Next n lines contains two names (length of each of them doesn't exceed 10), first being the person murdered on this day and the second being the one who replaced that person.The input format is consistent, that is, a person murdered is guaranteed to be from the two potential victims at that time. Also, all the names are guaranteed to be distinct and consists of lowercase English letters.第一行,包含两个名字(长度均不超过10),表示第一天的两个潜在受害者。第二行,一个整数n(1 ≤ n ≤ 1000),表示天数。接下来n行,每行两个名字(长度均不超过10),第一个为当天被杀害的人的名字,第二个为代替的人的名字。输入的格式是固定的,保证被杀死的对象是给定的潜在对象中的一个,而且不会两个人出现重名,名字有小写字母构成。

【输出格式】

Output n + 1 lines, the i-th line should contain the two persons from which the killer selects for the i-th murder. The (n + 1)-th line should contain the two persons from which the next victim is selected. In each line, the two names can be printed in any order.输出包含n+1行,第i行包含第i天的两个潜在受害者的名字。

【输入样例1】

ross rachel4ross joeyrachel phoebephoebe monicamonica chandler

【输出样例1】

ross racheljoey racheljoey phoebejoey monicajoey chandler

【样例1解释】

In first example, the killer starts with ross and rachel. • After day 1, ross is killed and joey appears. • After day 2, rachel is killed and phoebe appears. • After day 3, phoebe is killed and monica appears. • After day 4, monica is killed and chandler appears. 初始时,ross和rachel是潜在受害者;第1天后,ross被杀害,joey代替他,则joey和rachel是潜在受害者;第2天后,rachel被杀,phoebe代替他,则joey和phoebe是潜在受害者;第3天后,phoebe被杀,monica代替他,则joey和monica是潜在受害者;第4天后,monica被杀,chandler代替他,则joey和chandler是潜在受害者。

【输入样例2】

icm codeforces1codeforces technex

【输出样例2】

icm codeforcesicm technex

慎入:以下为解题思路和参考代码,请务必先自行思考

【解题思路】

简单模拟

【参考代码】

#include <bits/stdc++.h>using namespace std;const int maxn = 1e5+100;int main(){    string a,b;    cin>>a>>b;    int n;    cin>>n;    cout<<a<<" "<<b<<endl;    while(n--)    {        string c,d;        cin>>c>>d;        if(c==a)        {            a = b;            b = d;        }        else if(c==b)            b = d;        cout<<a<<" "<<b<<endl;    }    return 0;}
阅读全文
0 0
原创粉丝点击