https://www.acmicpc.net/problem/15650
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
41
42
43
44
45
46
47
48
49
|
#include <iostream>
#include <vector>
using namespace std;
const int MAX = 8;
char output[MAX * 2 + 1];
bool visited[MAX + 1];
void perm(int N, int M, int start, int depth)
{
// depth가 M에 도달하면 출력
if (depth == M)
{
cout << output << '\n';
return;
}
// 인수 start 값부터 N까지 수 중에서 M개의 숫자 조합
for (int i = start; i <= N; i++)
{
// 이전에 선택하지 않은 숫자만 선택
if (!visited[i])
{
visited[i] = true;
output[depth * 2] = i + '0';
output[depth * 2 + 1] = ' ';
// 오름차순: 다음숫자는 현재 숫자보다 더 큰 숫자가 와야함.
// start 파라미터 값으로 i + 1 넘기기
perm(N, M, i + 1, depth + 1);
visited[i] = false;
}
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int N, M;
cin >> N >> M;
perm(N, M, 1, 0);
return 0;
}
Colored by Color Scripter
|
조합된 숫자 중 오름차순인 수만 출력하는 문제
재귀 함수 안의 for문의 시작값을 잘 설정하는게 중요하다
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]15652번 : N과 M (4)(c++) (0) | 2020.05.05 |
---|---|
[BOJ]15651번: N과 M (3)(c++) (0) | 2020.05.05 |
[BOJ]15649번: N과 M (1)(c++) (0) | 2020.05.04 |
[BOJ]1748번: 수 이어 쓰기 1(c++) (0) | 2020.05.03 |
[BOJ]6064번: 카잉달력(c++) (0) | 2020.05.03 |
댓글