zoukankan      html  css  js  c++  java
  • A. A Serial Killer

    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.

    Input

    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.

    Output

    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.

    Examples
    input
    Copy
    ross rachel
    4
    ross joey
    rachel phoebe
    phoebe monica
    monica chandler
    output
    Copy
    ross rachel
    joey rachel
    joey phoebe
    joey monica
    joey chandler
    input
    Copy
    icm codeforces
    1
    codeforces technex
    output
    Copy
    icm codeforces
    icm technex
    Note

    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.
    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <string>
    #include <cstring>
    #include <cstdlib>
    #include <map>
    #include <vector>
    #include <set>
    #include <queue>
    #include <stack>
    #include <cmath>
    using namespace std;
    #define mem(s,t) memset(s,t,sizeof(s))
    #define pq priority_queue
    #define pb push_back
    #define fi first
    #define se second
    #define ac return 0;
    #define ll long long
    #define cin2(a,n,m)     for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) cin>>a[i][j];
    #define rep_(n,m)  for(int i=1;i<=n;i++) for(int j=1;j<=m;j++)
    #define rep(n) for(int i=1;i<=n;i++)
    #define test(xxx) cout<<"  Test  " <<" "<<xxx<<endl;
    #define TLE std::ios::sync_with_stdio(false);   cin.tie(NULL);   cout.tie(NULL);   cout.precision(10);
    #define lc now<<1
    #define rc now<<1|1
    #define ls now<<1,l,mid
    #define rs now<<1|1,mid+1,r
    #define half no[now].l+((no[now].r-no[now].l)>>1)
    #define ll long long
    #define inf 0x3f3f3f3f
    #define mod 1000000007
    const int mxn = 2e5+10;
    int n,m,k,ans,col,t,flag,x,y,vis[mxn];
    ll a[mxn],sum[mxn],cnt;
    vector<int>G[mxn],v;
    string str , ch ,s1 ,s2;
    //pair <int,int> pa[mxn];
    bool cmp(pair<int,int>x,pair<int,int>y){    return x.first>y.first;}
    int main()
    {
        TLE;
        while(cin>>str>>ch)
        {
            cout<<str<<" "<<ch<<endl;
            cin>>n;
            for(int i=0;i<n;i++)
            {
                cin>>s1>>s2;
                if(s1==str)
                {
                    str = s2;
                    cout<<str<<" "<<ch<<endl;
                }
                else if(s1==ch)
                {
                    ch = s2;
                    cout<<ch<<" "<<str<<endl;
                }
            }
        }
        return 0;
    }
    所遇皆星河
  • 相关阅读:
    诸神之眼-Nmap(精版,更新中。。。)
    workerman-chat聊天室
    Mysql记录事本
    网站标题、描述、关键词怎么设置?
    什么是谷歌SEO?
    图片加载之性能优化
    前端实现图片懒加载(lazyload)的两种方式
    HTML`CSS_网站页面不同浏览器兼容性问题解决
    从输入url到显示页面,都经历了什么
    什么是mvvm mvc是什么区别 原理
  • 原文地址:https://www.cnblogs.com/Shallow-dream/p/11884709.html
Copyright © 2011-2022 走看看