https://www.acmicpc.net/problem/15652
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <iostream>
using namespace std;
const int MAX = 8;
char output[MAX * 2 + 1];
void perm(int N, int M, int depth, int start)
{
// depth가 M에 도달하면 출력
if (depth == M)
{
cout << output << '\n';
return;
}
// 중복 허용, 비내림차순(다음 숫자가 현재 숫자보다 같거나 큰 순서)인 수열 입력
for (int i = start; i <= N; i++)
{
output[depth * 2] = i + '0';
output[depth * 2 + 1] = ' ';
perm(N, M, depth + 1, i);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// 입력
int N, M;
cin >> N >> M;
// 수열 출력
perm(N, M, 0, 1);
return 0;
}
Colored by Color Scripter
|
비 내림차순이라면
다음숫자의 숫자선택 범위를 현재 숫자부터!
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]15655번: N과 M (6) (c++) (0) | 2020.05.06 |
---|---|
[BOJ]15654번: N과 M (5)(c++) (0) | 2020.05.05 |
[BOJ]15651번: N과 M (3)(c++) (0) | 2020.05.05 |
[BOJ]15650번: N과 M (2)(c++) (0) | 2020.05.04 |
[BOJ]15649번: N과 M (1)(c++) (0) | 2020.05.04 |
댓글