https://www.acmicpc.net/problem/15651
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 = 7;
char output[MAX * 2 + 1];
void perm(int N, int M, int depth)
{
// depth가 M에 도달하면 출력
if (depth == M)
{
cout << output << '\n';
return;
}
// 중복을 허용하고 정렬 순서가 없는 수열 입력
for (int i = 1; i <= N; ++i)
{
output[depth * 2] = i + '0';
output[depth * 2 + 1] = ' ';
perm(N, M, depth + 1);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// 입력
int N, M;
cin >> N >> M;
// 수열 출력
perm(N, M, 0);
return 0;
}
Colored by Color Scripter
|
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]15654번: N과 M (5)(c++) (0) | 2020.05.05 |
---|---|
[BOJ]15652번 : N과 M (4)(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 |
[BOJ]1748번: 수 이어 쓰기 1(c++) (0) | 2020.05.03 |
댓글