博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
重复枚举和不重复枚举
阅读量:5926 次
发布时间:2019-06-19

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

考虑一个这样的问题,对于一个5块钱,你有1,2,3,4,5块钱,任意多张,问有多少个不同方案数,把5块钱找开

枚举和等于5的序列即可,如果 2 3 和 3 2 是同一组,那么每次都从0位置开始枚举,如果 2 3 和 3 2不是同一组,那么,枚举开始位置必须为上一个位置。

代码如下

#include"pch.h"#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include"math.h"namespace cc{ using std::cout; using std::endl; using std::cin; using std::map; using std::vector; using std::string; using std::sort; using std::priority_queue; using std::vector; using std::swap; using std::stack; using std::queue; using std::bitset; int total = 0; constexpr int N = 5; int dir[] = { 1,2,3,4,5}; int n; int ans[N]; void dfsNotRepeat(int t,int pre,int index) { if (t == 0) { for (int i = 0;i < index;i++) cout << " " << ans[i]; cout << endl; return; } else { for (int i = pre;i < n;i++) { if (dir[i] <= t) { ans[index] = dir[i]; dfsNotRepeat(t-dir[i],i,index+1); } } } } void dfsRepeat(int t, int pre, int index) { if (t == 0) { for (int i = 0;i < index;i++) cout << " " << ans[i]; cout << endl; return; } else { for (int i = 0;i < n;i++) { if (dir[i] <= t) { ans[index] = dir[i]; dfsRepeat(t - dir[i], i, index + 1); } } } } /** * *不重复的枚举 * */ void solve() { n = 5; dfsNotRepeat(5,0,0); cout << endl << endl << endl; dfsRepeat(5,0,0); }};int main(){#ifndef ONLINE_JUDGE freopen("d://1.text", "r", stdin); //freopen("d://1.out", "w", stdout);#endif // !ONLINE_JUDGE cc::solve(); return 0;}

 

posted on
2019-05-19 21:24 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/shuiyonglewodezzzzz/p/10890898.html

你可能感兴趣的文章
jmeter高级用法例子,如何扩展自定义函数
查看>>
lvs
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
是机遇还是挑战?---浅谈谷歌收购摩托罗拉移动
查看>>
项目总结26:java调用webservice接口(asmx)
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
基于HTML5手机上下滑动翻页特效
查看>>
打造自己博客(wordpress)的wap手机版本
查看>>
Floodlight 在 ChannelPipeline 图
查看>>
android下升级软件介绍
查看>>
leetcode-Word Ladder II
查看>>
3.菜鸟教你一步一步开发 web service 之 axis 服务端创建
查看>>
VS2017调试闪退之Chrome
查看>>
做移动互联网App,你的测试用例足够吗?
查看>>
cmd.exe启动参数说明
查看>>