zoukankan      html  css  js  c++  java
  • hihoCoder-1087 Hamiltonian Cycle (记忆化搜索)

    描述

    Given a directed graph containing n vertice (numbered from 1 to n) and m edges. Can you tell us how many different Hamiltonian Cycles are there in this graph?

    A Hamiltonian Cycle is a cycle that starts from some vertex, visits each vertex (except for the start vertex) exactly once, and finally ends at the start vertex.

    Two Hamiltonian Cycles C1, C2 are different if and only if there exists some vertex i that, the next vertex of vertex i in C1 is different from the next vertex of vertex i in C2.

    输入

    The first line contains two integers n and m. 2 <= n <= 12, 1 <= m <= 200.

    Then follows m line. Each line contains two different integers a and b, indicating there is an directed edge from vertex a to vertex b.

    输出

    Output an integer in a single line -- the number of different Hamiltonian Cycles in this graph.

    提示

    额外的样例:

    样例输入 样例输出
    3 3
    1 2               
    2 1              
    1 3
    0



    样例输入

    4 7
    1 2
    2 3
    3 4
    4 1
    1 3
    4 2
    2 1

    样例输出

    2

    题目大意:给一张无向图,找出哈密顿回路的条数。
    题目分析:暴搜,不过搜起来要讲究技巧,用二进制数表示状态结合记忆化搜索才能不超时。

    小技巧:sta&(-sta)便可得到只有二进制数sta最右边的1构成的数,如12&(-12)=8(负数在计算机内用反码表示)。


    代码如下:
    # include<iostream>
    # include<cstdio>
    # include<vector>
    # include<cstring>
    # include<algorithm>
    using namespace std;
    int n,m,dp[12][1<<12],st[12],p[1<<12];
    int DP(int u,int s)
    {
        if(dp[u][s])
            return dp[u][s];
        if(!s)
            return dp[u][s]=st[u]&1;
        int rest=s&st[u];
        while(rest){
            int tp=rest&(-rest);
            dp[u][s]+=DP(p[tp],s-tp);
            rest-=tp;
        }
        return dp[u][s];
    }
    int main()
    {
        int a,b;
        while(~scanf("%d%d",&n,&m))
        {
            memset(st,0,sizeof(st));
            while(m--)
            {
                scanf("%d%d",&a,&b);
                st[a-1]|=(1<<(b-1));
            }
            for(int i=0;i<n;++i)
                p[1<<i]=i;
            memset(dp,0,sizeof(dp));
            printf("%d
    ",DP(0,(1<<n)-2));
        }
        return 0;
    }
    

      

  • 相关阅读:
    文件的上传
    自定义EL表达式的函数
    JSTL 自定义标签
    Java c3p0连接池之二
    Java c3p0连接池
    JSP 登录与注册的小案例
    Java jdbc 连接oracle之三(封装工具类)
    Java jdbc 连接oracle之二(使用properties文件)
    Swift中Notification.Name自定义枚举
    swift UITableViewCell 策划删除,iOS11之后 设置侧滑不到最左边
  • 原文地址:https://www.cnblogs.com/20143605--pcx/p/4820530.html
Copyright © 2011-2022 走看看