点序列包括所有边
1. 原文
A vertex cover of a graph is a set of vertices such that each edge of the graph is incident to at least one vertex of the set. Now given a graph with several vertex sets, you are supposed to tell if each of them is a vertex cover or not.
Input Specification:
Each input file contains one test case. For each case, the first line gives two positive integers N and M (both no more than 104), being the total numbers of vertices and the edges, respectively. Then M lines follow, each describes an edge by giving the indices (from 0 to N−1) of the two ends of the edge.
After the graph, a positive integer K (≤ 100) is given, which is the number of queries. Then K lines of queries follow, each in the format:
Nv v[1] v[2]⋯v[Nv]
where Nv is the number of vertices in the set, and v[i]’s are the indices of the vertices.
output Specification:
For each query, print in a line Yes
if the set is a vertex cover, or No
if not.
Sample Input:
1 | 10 11 |
Sample output:
1 | No |
2. 解析
点覆盖所有边 输入边a–> b时在对应点中存储边 v[a].push_back(i),v[b].push_back(i)
查询序列时 访问点的所有边信息visit[v[ a ] [ i ] ] =true;
查询所有边,存在边未被访问,则为false
3. AC代码
1 |
|