AcWing 1627. 为啥y总的代码总是这么漂亮,爱了爱了
原题链接
简单
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int N=10003;
struct node
{
int a,b;
}edg[N];
int n,m,k;
bool st[N];
string func()
{
for(int i=0;i<m;i++)
{
if(!st[edg[i].a]&&!st[edg[i].b])
return "No";
}
return "Yes";
}
int main()
{
cin>>n>>m;
for(int i=0;i<m;i++) cin>>edg[i].a>>edg[i].b;
cin>>k;
while(k--)
{
int q;cin>>q;
memset(st,false,sizeof st);
while(q--)
{
int w;cin>>w;
st[w]=true;
}
cout<< func()<<endl;
}
return 0;
}