zoukankan      html  css  js  c++  java
  • YTU 1076: SPY

    1076: SPY

    时间限制: 1 Sec  内存限制: 128 MB
    提交: 6  解决: 6

    题目描述

    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.

    输入

    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 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”.

    样例输入

    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
    Qian Sun Li

    样例输出

    Qian Sun Li
    No enemy spy

    你  离  开  了  ,  我  的  世  界  里  只  剩  下  雨  。  。  。

    #include <iostream>
    #include <cstring>
    using namespace std;
    string a[1005],b[1005],c[1005];
    string s[1005];
    int flag[1005],temp[1005];
    int main()
    {
        int n,m,t;
        while(cin>>n>>m>>t)
        {
            for(int i=0; i<n; i++)cin>>a[i];
            memset(flag,0,sizeof(flag));
            memset(temp,0,sizeof(temp));
            for(int j=0; j<m; j++)
            {
                cin>>b[j];
                for(int i=0; i<n; i++)
                {
                    if(b[j]==a[i])
                    {
                        flag[j]=1;
                        break;
                    }
                }
            }
            for(int k=0; k<t; k++)
            {
                cin>>c[k];
                for(int j=0; j<m; j++)
                {
                    if(c[k]==b[j])
                    {
                        temp[j]=1;
                        break;
                    }
                }
            }
            int ans=0;
            for(int j=0; j<m; j++)
                if(flag[j]&&!temp[j])
                    s[ans++]=b[j];
            if(!ans)cout<<"No enemy spy"<<endl;
            else
            {
                for(int j=0; j<ans-1; j++)
                    cout<<s[j]<<" ";
                cout<<s[ans-1]<<endl;
            }
        }
        return 0;
    }
    

  • 相关阅读:
    CVSps 3.8 发布,CVS 资料库更改收集
    Cobra WinLDTP 3.0 发布,GUI 自动化测试
    SolusOS 2 Alpha 6 发布,桌面 Linux 发行
    微软 Windows Phone 8 原创应用大赛起航
    JAVA削足适履适应RESTful设计
    如何撰写编程书籍
    Synbak 2.1 发布,系统备份工具
    LibreOffice 4.0 RC1 发布,支持火狐兼容主题
    Rails 3.2.11 发布,修复关键安全问题
    haveged 1.7 发布,随机数生成器
  • 原文地址:https://www.cnblogs.com/im0qianqian/p/5989636.html
Copyright © 2011-2022 走看看