Counting Cliques HDU - 5952

news/2024/11/29 7:53:17/

题目:https://vjudge.net/contest/194395#problem/E

题目大意

给你一个无向图,让你求其中大小为s的完全图分量。

分析

暴力来做,设置一个集合,dfs当前点是否与集合中的点都有边,边界为集合大小,会超时,需要剪枝
每次都选择节点数大的点进去,这样就不会重复之前的选择了,比如1,2这种情况选择过了,然后2,1你就不用考虑了。

训练的时候想的是先把图补边为完全图,然后将没有的边从全排列里面剔除出去,然后各种麻烦弄不出来,还带偏了队友的思路呵呵

代码

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stack>
#include <queue>
#include <map>
#include <ctype.h>
#include <set>
#include <vector>
#include <cmath>
#include <bitset>
#include <algorithm>
#include <climits>
#include <string>
#include <list>
#include <cctype>
#include <cstdlib>
#include <fstream>
#include <sstream>
using namespace std;
#define ll long long
#define MAX 105ll qpow(ll p,ll q){ll f=1;while(q){if(q&1)f=f*p;p=p*p;q>>=1;}return f;}
int n, m ,s;
int res;
bool mmap[MAX][MAX];
vector<int> G[MAX];
//set<int> S;
//set<int>::iterator iter;
bool vis[MAX];//bool check(int v) {
//    for(iter = S.begin(); iter != S.end(); iter++) {
//        if(!mmap[*iter][v]){
//            return false;
//        }
//    }
//    return true;
//}void dfs(int a[],int u, int now) {if(now >= s) {res++;return;}for(int i = 0; i < G[u].size(); i++) {int v = G[u][i];if(!vis[v]&&a[now]<v) {int flag=1;for(int i=1;i<=now;i++){if(mmap[a[i]][v]!=1){flag=0;break;}}if(flag){a[now+1]=v;vis[v] = 1;dfs(a, v, now+1);vis[v] = 0;}}}
}int main() {int T;//ios::sync_with_stdio(false);//cin >> T;scanf("%d",&T);while(T--) {//cin >> n >> m >> s;scanf("%d%d%d",&n,&m,&s);//MEM(mmap, 0);memset(mmap,0,sizeof(mmap));for(int i = 1; i <= n; i++) {vis[i] = 0;G[i].clear();}res = 0;for(int i = 0; i < m; i++) {int a, b;//cin >> a >> b;scanf("%d%d",&a,&b);mmap[a][b] = 1;mmap[b][a] = 1;G[a].push_back(b);}int shu[105];for(int i = 1; i <= n; i++){shu[1]=i;dfs(shu,i,1);}//cout << res << endl;printf("%d\n",res);}
}

http://www.ppmy.cn/news/363400.html

相关文章

HDU 5952 Counting Cliques(dfs)

http://acm.split.hdu.edu.cn/showproblem.php?pid5952 题目大意&#xff1a; n个点 m条边的无向图 问节点个数为s的完全子图个数 分析&#xff1a; 一开始以为是规律题找了半天规律 发现重复的情况没法处理 自己太菜了处理不了 后来就想暴力 直接暴…

Counting Cliques HDU - 5952 (暴力搜索)

Counting Cliques HDU - 5952 &#xff08;暴力搜索&#xff09; A clique is a complete graph, in which there is an edge between every pair of the vertices. Given a graph with N vertices and M edges, your task is to count the number of cliques with a specific…

hdu5952 Counting Cliques

一个关于图的需要dfs剪枝的暴力题&#xff0c;想了半天没什么思路&#xff0c;后来室友和我说的想法。 因为给你一个图&#xff0c;数大小为s的联通图的个数&#xff0c;连通图就是所有的点两两相连通&#xff0c;首先遍历i从1~n&#xff0c;找到和i相邻的点&#xff0c;如果 …

HDU-5952 Counting Cliques ,爆搜!

Counting Cliques 题意&#xff1a;给你n个点&#xff0c;m条边&#xff0c;求大小为s(s<10)的团有多少个&#xff0c;每个点的度最多20。 看到数据这么小&#xff0c;想着各种bitset暴力&#xff0c;想着把3元团预处理&#xff0c;再预处理4元团等等。写了两个多小时发现复…

hdu 5952 Counting Cliques(dfs优化)

题目&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid5952 题意&#xff1a; 给一n个点m条边的图&#xff0c;找一个有s个顶点的完全子图。 分析&#xff1a; 对于每个s点完全子图&#xff0c;如果i点在子图中&#xff0c;那么就枚举与i有边的其他点&#xff0c;每加入…

利用FFmpeg实现录屏、直播推流、音频视频格式转换、剪裁等功能

一、FFmpeg简介。 二、FFmpeg常用参数及命令。 三、FFmpeg在Unity 3D中的使用。   1、FFmpeg 录屏。   2、FFmpeg 推流。   3、FFmpeg 其他功能简述。 一、FFmpeg简介 对于FFmpeg&#xff0c;其官网上是这样介绍的&#xff1a; FFmpeg is the leading multimedia fram…

hdoj 5952 Counting Cliques

题目链接&#xff1a;Counting Cliques 题目大意&#xff1a;给你一张n个点,m条边的无向图&#xff0c;问尺寸为s的完全图有多少个&#xff0c;尺寸即为这张完全图有多少个点&#xff0c;完全图是值每两点之间都有边 题目思路&#xff1a;这题吃时间吃的比较紧&#xff0c;想…

HDU 5952 搜索

题意 给一个无向图&#xff0c;所有点的度小于等于20。问这个图中有多少个完全子图。 题解 完全图就是一个图任意两点之间都有边相连。由于所有点的度都很小&#xff0c;我们可以暴力枚举完全图。 枚举过程首先从1号点开始&#xff0c;然后枚举与1号点相邻的点&#xff0c;…