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

本文共 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

你可能感兴趣的文章
Vim脚本 - 竖线'|' 和反斜线'\'
查看>>
netty框架的学习笔记 + 一个netty实现websocket通信案例
查看>>
我的友情链接
查看>>
nginx在reload时候报错invalid PID number
查看>>
神经网络和深度学习-第二周神经网络基础-第二节:Logistic回归
查看>>
Myeclipse代码提示及如何设置自动提示
查看>>
setTimeOut(),和setInterVal()调用函数加不加括号!!!
查看>>
c/c++中保留两位有效数字
查看>>
urlparse获取url后面的参数
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
notepad++正则表达式例子
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
由String类的Split方法所遇到的两个问题
查看>>
Python3.4 12306 2015年3月验证码识别
查看>>
js 上一步 下一步 操作
查看>>
FutureTask源码解析(1)——预备知识
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
自制操作系统Antz day11——实现shell(下)命令响应
查看>>
排名前三:微软2015年全球云系统管理软件业务增势强劲
查看>>