信息学奥赛一本通T1317-组合的输出(格式错误的看过来!!!) 摘要:看important!!! ```cpp #include #include using namespace std; int* stack; int top; int n, r; i…… 题解列表 2022年02月21日 0 点赞 4 评论 1072 浏览 评分:7.3
Python 深度优先算法(DFS) 摘要:解题思路:注意事项:参考代码:n,r = map(int,input().strip().split()) nums = [i for i in range(1,n+1)] result = []…… 题解列表 2023年03月16日 0 点赞 0 评论 254 浏览 评分:6.0
Java信息学奥赛一本通T1317-组合的输出 摘要:注意输出格式化 import java.util.ArrayList; import java.util.LinkedList; import java.util.List; im…… 题解列表 2023年03月23日 0 点赞 0 评论 331 浏览 评分:8.4
C语言解组合的输出 摘要:解题思路:注意事项:注意输出格式参考代码:#include <stdio.h>#include <stdbool.h>int n,r;bool judge[25];int b[25];void arr…… 题解列表 2023年07月20日 0 点赞 0 评论 324 浏览 评分:2.0
C++_DFS(深度优先搜索) 摘要:参考代码:#include<iostream>#include<algorithm>#include<cstdio>using namespace std;int const N =30;int n,…… 题解列表 2023年10月20日 0 点赞 0 评论 246 浏览 评分:9.5
组合的输出(python) 摘要:解题思路:注意事项:参考代码:def combine(n, k): def backtrack(combination, start, n, k, res): if k == 0:…… 题解列表 2023年12月26日 0 点赞 0 评论 87 浏览 评分:0.0
基础的递归组合输出 摘要:解题思路:1~n选择的排列数量r,递归可以用两个变量一个用于控制走,一个控制数量注意事项:采用的是框架写的:#include <bits/stdc++.h>using namespace std;#d…… 题解列表 2024年04月18日 0 点赞 0 评论 157 浏览 评分:0.0
信息学奥赛一本通T1317-组合的输出 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int n,r;int a[25];void dfs(int step,int flag)//step表…… 题解列表 2024年05月10日 1 点赞 0 评论 242 浏览 评分:0.0
模拟数的进位运算 摘要:解题思路:如下注意事项:参考代码:#include<stdio.h>int main(){ int n,r; scanf("%d%d",&n,&r); …… 题解列表 2024年07月24日 0 点赞 0 评论 214 浏览 评分:7.3
信息学奥赛一本通T1317-组合的输出 摘要:解题思路:- combination 函数是一个递归函数,用于生成组合。- 当 index 等于 r 时,说明已经生成了一个组合,输出该组合。- 在循环中,从 start 到 n 遍历,将当前数字加…… 题解列表 2024年10月09日 0 点赞 0 评论 186 浏览 评分:7.3