zoukankan      html  css  js  c++  java
  • SPY

     

    SPY                    

    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

     1 #include <iostream>
     2 #include <vector>
     3 #include <set>
     4 #include <algorithm>
     5 using namespace std;
     6 
     7 int main()
     8 {
     9     int a, b, c;
    10 
    11     while(cin >> a >> b >> c)
    12     {
    13         vector<string> v1, v2, v3;
    14         vector<string> ::iterator it;
    15         for(int i = 0; i < a; i++)
    16         {
    17             string name;
    18             cin >> name;
    19             v1.push_back(name);
    20         }
    21         for(int i = 0; i < b; i++)
    22         {
    23             string name;
    24             cin >> name;
    25             v2.push_back(name);
    26         }
    27         for(int i = 0; i < c; i++)
    28         {
    29             string name;
    30             cin >> name;
    31             v3.push_back(name);
    32         }
    33         int flag = 0;
    34         for(it = v2.begin(); it != v2.end();it++)
    35         {
    36             if((find(v1.begin(),v1.end(),*it) != v1.end()) && find(v3.begin(),v3.end(),*it)==v3.end() && flag == 0)
    37             {
    38                 flag = 1;
    39                 cout << *it ;
    40             }
    41             else if((find(v1.begin(),v1.end(),*it) != v1.end()) && find(v3.begin(),v3.end(),*it)==v3.end() && flag == 1)
    42             {
    43                 flag = 1;
    44                 cout << " " << *it ;
    45             }
    46         }
    47         if(flag == 0)
    48             cout << "No enemy spy";
    49         cout << endl;
    50     }
    51     return 0;
    52 }
  • 相关阅读:
    dedecms为导航栏目添加英文标题
    网页设计中一些小功能
    less使用总结
    canvas图形库
    前端面试总结三
    前端面试总结二
    DOM节点中获取文本易混淆的属性
    前端面试总结
    git 学习使用总结三(远程仓库操作)
    git 学习使用总结二(远程仓库操作)
  • 原文地址:https://www.cnblogs.com/jxust-jiege666/p/6539516.html
Copyright © 2011-2022 走看看