1142 Maximal Clique (25 分)

A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. A maximal clique is a clique that cannot be extended by including one more adjacent vertex. (Quoted from https://en.wikipedia.org/wiki/Clique_(graph_theory))

Now it is your job to judge if a given subset of vertices can form a maximal clique.

Input Specification:

Each input file contains one test case. For each case, the first line gives two positive integers Nv (≤ 200), the number of vertices in the graph, and Ne, the number of undirected edges. Then Ne lines follow, each gives a pair of vertices of an edge. The vertices are numbered from 1 to Nv.

After the graph, there is another positive integer M (≤ 100). Then M lines of query follow, each first gives a positive number K (≤ Nv), then followed by a sequence of K distinct vertices. All the numbers in a line are separated by a space.

Output Specification:

For each of the M queries, print in a line Yes if the given subset of vertices can form a maximal clique; or if it is a clique but not a maximal clique, print Not Maximal; or if it is not a clique at all, print Not a Clique.

Sample Input:

  1. 8 10
  2. 5 6
  3. 7 8
  4. 6 4
  5. 3 6
  6. 4 5
  7. 2 3
  8. 8 2
  9. 2 7
  10. 5 3
  11. 3 4
  12. 6
  13. 4 5 4 3 6
  14. 3 2 8 7
  15. 2 2 3
  16. 1 1
  17. 3 4 3 6
  18. 3 3 2 1

Sample Output:

  1. Yes
  2. Yes
  3. Yes
  4. Yes
  5. Not Maximal
  6. Not a Clique

题目大意:clique是一个点集,在一个无向图中,这个点集中任意两个不同的点之间都是相连的。maximal clique是一个clique,这个clique不可以再加入任何一个新的结点构成新的clique。

输入是有n条边,给出每条边的两端节点,并且后面给出m个查询,查询是点集。

//这个题目大意看了好几遍没看懂,这个clique也不是环,比如对第三个查询2 3,输出Yes,说明不是环了。

//思考了一下发现不太会,怎么去确定这个是maximal的呢?怎么去扩展判断呢?不会。

代码转自:https://www.liuchuo.net/archives/4614

  1. #include <iostream>
  2. #include <vector>
  3. #include<cstdio>
  4. using namespace std;
  5. int e[][];
  6. int main() {
  7. int nv, ne, m, ta, tb, k;
  8. scanf("%d %d", &nv, &ne);
  9. for (int i = ; i < ne; i++) {
  10. scanf("%d %d", &ta, &tb);
  11. e[ta][tb] = e[tb][ta] = ;//存储到邻接矩阵中,有边是1.
  12. }
  13. scanf("%d", &m);
  14. for (int i = ; i < m; i++) {
  15. scanf("%d", &k);
  16. vector<int> v(k);
  17. int hash[] = {}, isclique = , isMaximal = ;
  18. for (int j = ; j < k; j++) {
  19. scanf("%d", &v[j]);
  20. hash[v[j]] = ;//使用hash数组存储
  21. }
  22. for (int j = ; j < k; j++) {//这里判断是否是一个click
  23. if (isclique == ) break;//跳出两层循环
  24. for (int l = j + ; l < k; l++) {
  25. if (e[v[j]][v[l]] == ) {
  26. isclique = ;
  27. printf("Not a Clique\n");
  28. break;
  29. }
  30. }
  31. }
  32. if (isclique == ) continue;//不进行下面的操作。
  33. for (int j = ; j <= nv; j++) {
  34. if (hash[j] == ) {//挨个判断其他所有的点,判断每一个点。
  35. for (int l = ; l < k; l++) {//和当前检测中所有的点进行判断。
  36. if (e[v[l]][j] == ) break;//如果这个点不是的话,接着判断其他点
  37. if (l == k - ) isMaximal = ;
  38. }
  39. }
  40. if (isMaximal == ) {
  41. printf("Not Maximal\n");
  42. break;
  43. }
  44. }
  45. if (isMaximal == ) printf("Yes\n");
  46. }
  47. return ;
  48. }

//柳神真厉害。

1.使用邻接矩阵存储图,右边标记为1.

2.对于输入的使用hash数组来标记,向量来存储

3.对图中所有剩下的点一一与当前检测中的进行判断。

//学习了!

PAT 1142 Maximal Clique[难]的更多相关文章

  1. [PAT] 1142 Maximal Clique(25 分)

    1142 Maximal Clique(25 分) A clique is a subset of vertices of an undirected graph such that every tw ...

  2. PAT 1142 Maximal Clique

    A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the ...

  3. PAT 甲级 1142 Maximal Clique

    https://pintia.cn/problem-sets/994805342720868352/problems/994805343979159552 A clique is a subset o ...

  4. PAT A1142 Maximal Clique (25 分)——图

    A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the ...

  5. 1142. Maximal Clique (25)

    A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the ...

  6. 1142 Maximal Clique

    题意:给出一个图,定义这样一个结点子集subset,若subset中的任意两结点不都相邻,则称之为Not a Clique:若subset中的任意两结点都相邻,则称之为Clique:若subset中的 ...

  7. PAT_A1142#Maximal Clique

    Source: PAT A1142 Maximal Clique (25 分) Description: A clique is a subset of vertices of an undirect ...

  8. A1142. Maximal Clique

    A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the ...

  9. PAT 1085 Perfect Sequence[难]

    1085 Perfect Sequence (25 分) Given a sequence of positive integers and another positive integer p. T ...

随机推荐

  1. C# Smtp方式发送邮件

    //简单邮件传输协议类             System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();        ...

  2. JAVA语言基础内部测试题(50道选择题)

    JAVA语言基础内部测试题 选择题(针对以下题目,请选择最符合题目要求的答案,针对每一道题目,所有答案都选对,则该题得分,所选答案错误或不能选出所有答案,则该题不得分.)(每题2分) 没有注明选择几项 ...

  3. HDFS原理解析(总体架构,读写操作流程)

    前言 HDFS 是一个能够面向大规模数据使用的,可进行扩展的文件存储与传递系统.是一种允许文件通过网络在多台主机上分享的文件系统,可让多机器上的多用户分享文件和 存储空间.让实际上是通过网络来访问文件 ...

  4. NGUI在5.3打包失败问题

    一.NGUI版本 NGUI是很好用的Unity UI插件. 当前使用版本NGUI Next-Gen UI v3.9.7 (Feb 10, 2016)和NGUI Next-Gen UI 3.9.0两个版 ...

  5. VR室内定位系统小结

    一.写在开始之前 不管是HTC 的Vive还是OC的CV1,都说明VR 定位设备和手柄都会成为未来VR的发展趋势. VR目前关键就是体验,全身心的投入,身临其境的感觉. 不能总玩着玩着,出戏了.这肯定 ...

  6. git的常见问题

    今天把电脑清理了下再push就出问题了 ,报这个错Failed with error: fatal: unable to access 'https://git.oschina.net/dubo_/G ...

  7. @synthesize obj=_obj的意义详解 @property和@synthesize

    本文转载至 http://blog.csdn.net/ztp800201/article/details/9231969 http://hi.baidu.com/feng20068123/item/c ...

  8. JS Date parse

    因为JS中的Date转换格式没有“-”这种间隔符,Date.parse会生成NAN,所以只能进行转换. <script type="text/javascript"> ...

  9. 【BZOJ1877】[SDOI2009]晨跑 最小费用最大流

    [BZOJ1877][SDOI2009]晨跑 Description Elaxia最近迷恋上了空手道,他为自己设定了一套健身计划,比如俯卧撑.仰卧起坐等 等,不过到目前为止,他坚持下来的只有晨跑. 现 ...

  10. javascript飞机大战-----002游戏引擎

    基本html布局 <!DOCTYPE html> <html lang="en"> <head> <meta charset=" ...