zoukankan      html  css  js  c++  java
  • ICM Technex 2017 and Codeforces Round #400 (Div. 1 + Div. 2, combined) A

    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
    ross rachel
    4
    ross joey
    rachel phoebe
    phoebe monica
    monica chandler
    output
    ross rachel
    joey rachel
    joey phoebe
    joey monica
    joey chandler
    input
    icm codeforces
    1
    codeforces technex
    output
    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.

    题意:看样列

    解法:没啥说的

     1 #include<bits/stdc++.h>
     2 typedef long long LL;
     3 typedef unsigned long long ULL;
     4 typedef long double LD;
     5 using namespace std;
     6 int main(){
     7     string s1,s2;
     8     cin>>s1>>s2;
     9     cout<<s1<<" "<<s2<<endl;
    10     int n;
    11     cin>>n;
    12     for(int i=1;i<=n;i++){
    13         string s3,s4;
    14         cin>>s3>>s4;
    15         if(s3==s1){
    16             s1=s4;
    17         }else{
    18             s2=s4;
    19         }
    20         cout<<s1<<" "<<s2<<endl;
    21     }
    22     return 0;
    23 }
  • 相关阅读:
    刷脸支付真的来啦!华为nova3带你玩转酷时代~
    华为nova3发布,将支持华为AI旅行助手
    华为nova3超级慢动作酷玩抖音,没有办法我就是这么强大!
    Duang,HUAWEI DevEco IDE全面升级啦
    HUAWEI HiAI亮相Droidcon柏林2018开发者峰会 开启HiAI海外生态
    华为快应用引擎架构及开发实践
    C#怎样从指定服务器上下载指定文件到本地电脑上
    史上最全的Android的Tab与TabHost讲解
    Android Browser学习二 BrowserActivity 的初始化 --其他重要模块
    Android Browser学习一 application的初始化
  • 原文地址:https://www.cnblogs.com/yinghualuowu/p/7223371.html
Copyright © 2011-2022 走看看