您的位置:首页 > 其它

NOJ [1220] SPY

2014-06-12 22:17 211 查看
问题描述

The
National Intelligence Council of X Nation receives a piece of credible information that Nation Y will send spies to steal Nation X’sconfidential
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”.

一开始偷懒想用map,结果来了三发WA,无奈之下,只好采取普通的做法,哎,

题意就是,从第二行的字符串里,输出在第一行里出现过的并且在第三行里没有出现过的

#include<stdio.h>
#include<map>
#include<iostream>
#include<string>
using namespace std;

int main()
{
int A,B,C;
while(~scanf("%d%d%d",&A,&B,&C))
{
string temp;
string all[100];
string spy[100];
bool vis[100];
memset(vis,true,sizeof(vis));
for(int i=0;i<A;i++)
{
cin>>temp;
all[i]=temp;//全存好
}
for(int i=0;i<B;i++)
{
cin>>temp;
spy[i]=temp;
}
for(int i=0;i<C;i++)
{
cin>>temp;
for(int j=0;j<B;j++)
{
if(spy[j]==temp)//找到相同的
vis[j]=false;
}
}
int p=0,t=0;
for(int i=0;i<B;i++)
{
if(vis[i])
{
for(int j=0;j<A;j++)
{
if(all[j]==spy[i])
{
if(t)
cout<<" ";
t++;
cout<<spy[i];
p++;
}
}
}
}
if(!p)
cout<<"No enemy spy\n";
else
cout<<endl;

}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: