zoukankan      html  css  js  c++  java
  • NBUT 1220 SPY 2010辽宁省赛

    Time limit  1000 ms

    Memory limit  131072 kB

    The National Intelligence Council of X Nation receives a piece of credible information that Nation Y will send spies to steal Nation X’s confidential paper. So the commander of The National Intelligence Council take measures immediately, he will investigate people who will come into NationX. At the same time, there are two List in the Commander’s hand, one is full of spies that Nation Y will send to Nation X, and the other one is full of spies that Nation X has sent to Nation Y before. There may be some overlaps of the two list. Because the spy may act two roles at the same time, which means that he may be the one that is sent from Nation X to Nation Y, we just call this type a “dual-spy”. So Nation Y may send “dual_spy” back to Nation X, and it is obvious now that it is good for Nation X, because “dual_spy” may bring back NationY’s confidential paper without worrying to be detention by NationY’s frontier So the commander decides to seize those that are sent by NationY, and let the ordinary people and the “dual_spy” in at the same time .So can you decide a list that should be caught by the Commander?

    A:the list contains that will come to the NationX’s frontier.

    B:the list contains spies that will be sent by Nation Y.

    C:the list contains spies that were sent to NationY before.

    Input

    There are several test cases.
    Each test case contains four parts, the first part contains 3 positive integers A, B, C, and A is the number which will come into the frontier. B is the number that will be sent by Nation Y, and C is the number that NationX has sent to NationY before.
    The second part contains A strings, the name list of that will come into the frontier.
    The second part contains B strings, the name list of that are sent by NationY.
    The second part contains C strings, the name list of the “dual_spy”.
    There will be a blank line after each test case.
    There won’t be any repetitive names in a single list, if repetitive names appear in two lists, they mean the same people.

    Output

    Output the list that the commander should caught (in the appearance order of the lists B).if no one should be caught, then , you should output “No enemy spy”.

    Sample Input

    8 4 3
    Zhao Qian Sun Li Zhou Wu Zheng Wang
    Zhao Qian Sun Li
    Zhao Zhou Zheng
    2 2 2
    Zhao Qian
    Zhao Qian
    Zhao Qian
    

    Sample Output

    Qian Sun Li
    No enemy spy

    题意很简单,给你ABC三个集合,让你找出A、B共有的且C中没有的,按照在B集合中给出的顺序输出,如果没有就输出No enemy spy

    代码如下:

     1 #include <iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<stack>
     6 #include<map>
     7 #include<set>
     8 #include<queue>
     9 #include<cmath>
    10 #include<string>
    11 using namespace std;
    12 
    13 map<string,int> mp1,mp2;
    14 int n,m,k;
    15 char ch[100];
    16 char str[1000][100];
    17 int main()
    18 {
    19     while(~scanf("%d%d%d",&n,&m,&k))
    20     {
    21         mp1.clear();
    22         mp2.clear();
    23         for(int i=1;i<=n;i++)
    24         {
    25             scanf("%s",&ch);
    26             mp1[ch]=1;
    27         }
    28         for(int i=1;i<=m;i++)
    29             scanf("%s",&str[i]);
    30         for(int i=1;i<=k;i++)
    31         {
    32             scanf("%s",&ch);
    33             mp2[ch]=1;
    34         }
    35         int num=0;
    36         for(int i=1;i<=m;i++)
    37         {
    38            map<string,int>::iterator it;
    39            it=mp1.find(str[i]);
    40            if (it!=mp1.end())
    41            {
    42               it=mp2.find(str[i]);
    43               if(it==mp2.end())
    44               {
    45                   if(num++) printf(" ");
    46                   printf("%s",str[i]);
    47               }
    48            }
    49         }
    50         if (num==0) printf("No enemy spy
    ");
    51           else printf("
    ");
    52     }
    53     return 0;
    54 }
  • 相关阅读:
    Android Studio 配置Gradle总结
    ion-icon
    Centos 7下利用crontab定时执行任务详解
    Centos7 下安装以及使用mssql
    Docker容器
    linux centos7--linux和window共享文件(samba)
    一些CMS网站系统漏洞,练手用(持续更新)
    相应的游戏服务器组件信息不存在,房间创建失败
    [Windows] php开发工具,zendstudio13使用方法补丁
    mysql sql语句大全
  • 原文地址:https://www.cnblogs.com/Annetree/p/6641357.html
Copyright © 2011-2022 走看看