https://www.acmicpc.net/problem/15656
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
50
|
#include <iostream>
#include <algorithm>
using namespace std;
const int MAX = 7;
int numbers[MAX];
int output[MAX];
void dps(int N, int M, int depth)
{
if (depth == M)
{
for (int i = 0; i < M; ++i)
{
cout << output[i] << ' ';
}
cout << '\n';
return;
}
// 오름차순, 중복 허용
for (int i = 0; i < N; ++i)
{
output[depth] = numbers[i];
dps(N, M, depth + 1);
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int N, M;
cin >> N >> M;
for (int i = 0; i < N; ++i)
{
cin >> numbers[i];
}
// 정렬
sort(numbers, numbers + N);
dps(N, M, 0);
return 0;
}
Colored by Color Scripter
|
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]15663번: N과 M(9)(c++) (0) | 2020.05.09 |
---|---|
[BOJ]15657번: N과 M (8) (c++) (0) | 2020.05.06 |
[BOJ]15655번: N과 M (6) (c++) (0) | 2020.05.06 |
[BOJ]15654번: N과 M (5)(c++) (0) | 2020.05.05 |
[BOJ]15652번 : N과 M (4)(c++) (0) | 2020.05.05 |
댓글