HDU5952 Counting Cliques(暴力)

题意:

100个点1000条边的图,问你有多少个s个点的团,每个节点的度不超过20

思路:

暴力。。边太少,直接纯暴都可以

2106ms

/* ***********************************************
Author        :devil
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <stack>
#include <map>
#include <string>
#include <time.h>
#include <cmath>
#include <stdlib.h>
#define LL long long
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define dep(i,a,b) for(int i=a;i>=b;i--)
#define ou(a) printf("%d\n",a)
#define pb push_back
#define mkp make_pair
template<class T>inline void rd(T &x)
{
    char c=getchar();
    x=0;
    while(!isdigit(c))c=getchar();
    while(isdigit(c))
    {
        x=x*10+c-‘0‘;
        c=getchar();
    }
}
#define IN freopen("in.txt","r",stdin);
#define OUT freopen("out.txt","w",stdout);
using namespace std;
const int inf=0x3f3f3f3f;
const int mod=1e9+7;
const int N=1e2+10;
vector<int>eg[N];
int t,n,m,s,x,y;
int ans,num,tmp[N];
bool mp[N][N];
void dfs(int u,int v)
{
    if(v+eg[u].size()<s) return;
    if(v==s)
    {
        ans++;
        return;
    }
    for(int i=0;i<eg[u].size();i++)
    {
        int j;
        for(j=0;j<num;j++)
            if(!mp[tmp[j]][eg[u][i]])
                break;
        if(j==num)
        {
            tmp[num++]=eg[u][i];
            dfs(eg[u][i],v+1);
            num--;
        }
    }
}
int main()
{
#ifndef ONLINE_JUDGE
IN
#endif
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d%d",&n,&m,&s);
        for(int i=1;i<=n;i++) eg[i].clear();
        memset(mp,0,sizeof(mp));
        while(m--)
        {
            scanf("%d%d",&x,&y);
            if(x>y) swap(x,y);
            eg[x].pb(y);
            mp[x][y]=1;
        }
        ans=0;
        n=n-s+1;
        for(int i=1;i<=n;i++)
        {
            num=0;
            tmp[num++]=i;
            dfs(i,1);
        }
        printf("%d\n",ans);
    }
    return 0;
}
时间: 2024-12-18 12:24:19

HDU5952 Counting Cliques(暴力)的相关文章

HDU 5952 Counting Cliques -暴力

现场赛手速三题,这题一直没写. 直接暴力,注意点只有一个!单向建边,从小点到大点. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 using namespace std; 5 struct edge 6 { 7 int to; 8 int next; 9 }E[1011]; 10 int head[111]; 11 bool e[111][111]; 12 int tot; 13 int

HDU5952 Counting Cliques 暴搜优化

一.前言 这题看上去相当唬人(NPC问题),但是 因为限制了一些条件,所以实际上并没有太唬人. 二.题目 给你一个图,要求你找出数量为S的团的数量. 三.题解 暴搜,再加上一些玄学优化. 优化1:使用链表来优化图 优化2:使用mapp[][]来进行标记 优化3:使用inline.define来进行优化 优化4:无向图只从小节点指向大节点,优化边的数量 优化5:初始化时使用精确控制memset字节数 //#include<bits/stdc++.h> #include<stdio.h>

hdu5952 Counting Cliques 技巧dfs

题意:一个有N个点M条边的图,球其中由S个点构成的团的个数.一个团是一个完全子图. 没有什么好办法,只有暴力深搜,但是这里有一个神奇的操作:将无向图转为有向图:当两个点编号u<v时才有边u->v,这样的好处是一张完全图只有从最小编号开始深搜的时候才会搜完整张完全图(本来完全图从其中任意一个节点进入都是没有区别的),因为假如v1 < v2,并且v1,v2在同一完全图中,则v2只会走到编号更大的点,这样每张大小为S的完全图只有一条固定的路,所以不会重复.从1~N个点每个点开始dfs,这样即使

【算法系列学习】巧妙建图,暴搜去重 Counting Cliques

E - Counting Cliques http://blog.csdn.net/eventqueue/article/details/52973747 http://blog.csdn.net/yuanjunlai141/article/details/52972715 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<string> 5 #include<

HDU 5952 Counting Cliques(dfs)

Counting Cliques Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1855    Accepted Submission(s): 735 Problem Description A clique is a complete graph, in which there is an edge between every pai

【HDU5952】Counting Cliques

题目大意:给定一个\(N\)个点,\(M\)条边的无向图,求图中有多少个大小为\(S\)的团.\(N \le 100,deg(i)\le 20,i\in [1,n]\). 题解: 考虑搜索. 需要确定一种搜索顺序,使得团的计数不重不漏.考虑枚举团中最小编号的节点,且搜索状态转移中只能转移到比当前团中编号最大的节点编号更大的点. 由于\(N\)上限是100,但是每个节点的度数很小,若直接用邻接矩阵进行状态转移,复杂度较高,因此考虑建立邻接表进行转移.在判断两点是否存在边时用邻接矩阵快速判断即可.

ZOJ (狗狗)1426 Counting Rectangles(暴力)

Counting Rectangles Time Limit: 2 Seconds      Memory Limit: 65536 KB We are given a figure consisting of only horizontal and vertical line segments. Our goal is to count the number of all different rectangles formed by these segments. As an example,

HDU - 5952 Counting Cliques(DFS)

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 size S in the graph. InputThe first line is the number

hdu1246 Counting Squares(暴力hash)

题目意思: 每行给出4个正整数,代表矩形的四个顶点坐标,现给出一系列的数据,当给的数-1 -1 -1 -1时表示一组数据结束,给出这些矩形覆盖的面积,当数据为-2 -2 -2 -2时结束输入. http://acm.hdu.edu.cn/showproblem.php?pid=1264 题目分析: 首先注意到数据范围较小,而且给的数据为正整数,但是不能重复计算面积,因此我们化整为零计算每个矩形分成的单位面积1的个数,进行累加即可,为了保证不重复计算面积,用一个二维数组表示该面积已经被计算即可,见