PAT乙级1090 危险品装箱 (25 分)
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT乙级1090 危险品装箱 (25 分)相关的知识,希望对你有一定的参考价值。
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<map>
#include<vector>
using namespace std;
int a[1005];
map<int,vector<int> >mp;
int main(void)
{
int n,m; cin>>n>>m;
for(int i=1;i<=n;i++)
{
int x,y; scanf("%d%d",&x,&y);
mp[x].push_back(y),mp[y].push_back(x);
}
for(int i=1;i<=m;i++)
{
bool flag=true;
int k; cin>>k;
map<int,bool>hush;
for(int j=1;j<=k;j++) scanf("%d",&a[j]),hush[a[j]]=true;
for(int s1=1;s1<=k;s1++)
{
for(int s2=0;s2<mp[a[s1]].size();s2++)
{
if(hush[mp[a[s1]][s2]]) flag=false;
if(!flag) break;
}
}
if(flag) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
return 0;
}
以上是关于PAT乙级1090 危险品装箱 (25 分)的主要内容,如果未能解决你的问题,请参考以下文章
PTA basic 1090 危险品装箱 (25 分) c++语言实现(g++)
PAT基础级-钻石段位样卷2-7-7 危险品装箱 (25 分)
PAT (Advanced Level) Practice 1090 Highest Price in Supply Chain (25 分) 凌宸1642