博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 3091 Necklace(状态压缩类似于TSP问题)
阅读量:6074 次
发布时间:2019-06-20

本文共 1243 字,大约阅读时间需要 4 分钟。

Necklace

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 327680/327680 K (Java/Others)

Total Submission(s): 709    Accepted Submission(s): 245

Problem Description
One day , Partychen gets several beads , he wants to make these beads a necklace . But not every beads can link to each other, every bead should link to some particular bead(s). Now , Partychen wants to know how many kinds of necklace he can make.
 

 

Input
It consists of multi-case .
Every case start with two integers N,M ( 1<=N<=18,M<=N*N )
The followed M lines contains two integers a,b ( 1<=a,b<=N ) which means the ath bead and the bth bead are able to be linked.
 

 

Output
An integer , which means the number of kinds that the necklace could be.
 

 

Sample Input
3 3 1 2 1 3 2 3
 

 

Sample Output
2
 

 

Source
 
/*	已经给了时间看题解了,正式练习一道题三天之内不准再看题解!*/#include
#include
#include
#define N (1<<18)+5#define M 20#define INF 0x3f3f3f3fusing namespace std;long long dp[N][M],g[M][M],n,m;//dp[i][j]表示在i个状态下,你到达j这个点的方案数int main(){ //freopen("in.txt", "r", stdin); while(scanf("%lld%lld",&n,&m)!=EOF) { memset(dp,0,sizeof dp); memset(g,0,sizeof g); int a,b; for(int i=0;i

  

 

转载于:https://www.cnblogs.com/wuwangchuxin0924/p/5742625.html

你可能感兴趣的文章
IP相关知识复习
查看>>
行业大佬集体唱衰教育O2O,强管控的B2C模式将是唯一出路
查看>>
Ubuntu的JSP服务器安装
查看>>
Centos 6.4 下设置静态IP,指定NAMESERVER(DNS),修改网卡MAC地址
查看>>
阿里工程师开发了一款免费工具,提升Kubernetes应用开发效率
查看>>
cisco防火墙ASA5505配置
查看>>
MySQL 表栏位类型选择
查看>>
官网下载Google Chrome离线安装包
查看>>
Linux 系统常用的性能监测命令工具
查看>>
lvresize 指令
查看>>
Xamarin如何生成Android项目的APK
查看>>
Fabric实战
查看>>
PAT 1003. Emergency
查看>>
三星i9300 unroot || root恢复
查看>>
jsp基础知识
查看>>
离线安装db2的python模块ibm_db
查看>>
环境变量
查看>>
Swift 项目中可能用到的第三方框架
查看>>
我的友情链接
查看>>
普通exe和sys驱动文件结构上有什么不同?
查看>>