PAT 1134 Vertex Cover
用邻接矩阵会超时,第一次尝试了邻接表
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int id;
vector<int> next;
};
bool dfs(vector<bool> visited,vector<Node> node)
{
int len=visited.size();
for(int i=0;i<len;i++)
{
if(visited[i]==true)
continue;
for(int j=0;j<node[i].next.size();j++)
{
if(visited[node[i].next[j]]==true)
continue;
return true;
}
}
return false;
}
int main()
{
int n,m;
cin>>n>>m;
vector<Node> node(n);
for(int p=0;p<m;p++)
{
int i,j;
cin>>i>>j;
node[i].next.push_back(j);
node[j].next.push_back(i);
}
int t;
cin>>t;
while(t--)
{
int k;
cin>>k;
vector<bool> visited(n,false);
for(int i=0;i<k;i++)
{
int p;
cin>>p;
visited[p]=true;
}
if(dfs(visited,node))
cout<<"No";
else
cout<<"Yes";
if(t!=0)
cout<<endl;
}
}