본문 바로가기
Algorithm/BOJ

[BOJ]15654번: N과 M (5)(c++)

by HBGB 2020. 5. 5.

https://www.acmicpc.net/problem/15654

 

15654번: N과 M (5)

N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다. N개의 자연수 중에서 M개를 고른 수열

www.acmicpc.net

 

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
51
52
53
54
55
56
57
58
#include <iostream>
#include <algorithm>
 
using namespace std;
 
const int MAX = 8;
int numbers[MAX];
bool visited[MAX];
int output[MAX];
 
void perm(int N, int M, int depth)
{
    // depth가 M에 도달하면 출력
    if (depth == M)
    {
        for (int i = 0; i < M; i++)
        {
            cout << output[i] << ' ';
        }
        cout << '\n';
        return;
    }
 
    for (int i = 0; i < N; ++i)
    {
        // 아직 쓰지 않은 숫자 입력
        if (!visited[i])
        {
            visited[i] = true;
            output[depth] = numbers[i];
            perm(N, M, 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;
    for (int i = 0; i < N; ++i)
    {
        cin >> numbers[i];
    }
 
    // 입력받은 숫자 정렬
    sort(numbers, numbers + N);
 
    // 수열 출력
    perm(N, M, 0);
 
    return 0;
}
Colored by Color Scripter

 

 

입력으로 받은 N개의 수열에서 M개의 숫자를 오름차순으로 출력

'Algorithm > BOJ' 카테고리의 다른 글

[BOJ]15656번: N과 M (7) (c++)  (0) 2020.05.06
[BOJ]15655번: N과 M (6) (c++)  (0) 2020.05.06
[BOJ]15652번 : N과 M (4)(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

댓글