ACwing92 递归实现指数型枚举 dfs

2021-02-04 09:17

阅读:733

标签:can   scanf   网址   ==   代码   标记   name   $1   c代码   

网址:https://www.acwing.com/problem/content/94/

题解:

每一层标记一个起点和下一层选择起点后的哪个数,选够数量或者超出$n$就返回,然后选数的数量枚举$1$至$n$即可。

AC代码:

#include 
using namespace std;
int sta[20], cnt;
int n;
void dfs(int beg, int div, int lim)
{
	if (div == lim)
	{
		for (int i = 0; i 

  

ACwing92 递归实现指数型枚举 dfs

标签:can   scanf   网址   ==   代码   标记   name   $1   c代码   

原文地址:https://www.cnblogs.com/Aya-Uchida/p/11470608.html


评论


亲,登录后才可以留言!