본문 바로가기
Algorithm/BOJ

[BOJ]15649번: N과 M (1)(c++)

by HBGB 2020. 5. 4.

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

 

15649번: N과 M (1)

한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다. 수열은 사전 순으로 증가하는 순서로 출력해야 한다.

www.acmicpc.net

 

방법 1 : BFS

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
#include <iostream>
 
using namespace std;
 
const int MAX = 8;
int visited[MAX + 1];
char output[MAX * 2 + 1];
 
void perm(int N, int M, int depth)
{
    // depth가 목표 길이에 도달하면 출력
    if (depth == M)
    {
        cout << output << '\n';
        return;
    }
 
    // 1~N까지의 숫자 중에서 M 자릿수 숫자 조합 만들기
    for (int i = 1; i <= N; i++)
    {
        // 이전에 선택하지 않은 숫자중에서 다음 숫자 선택
        if (!visited[i])
        {
            visited[i] = true;
            output[depth * 2= i + '0';
            output[depth * 2 + 1= ' ';
            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;
 
    perm(N, M, 0);
 
    return 0;
}
Colored by Color Scripter

 

방법 2: 라이브러리 사용

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>
#include <algorithm>
#include <string>
 
using namespace std;
 
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    int N, M;
    cin >> N >> M;
    
    string nCm;
    
    for (int i = 1; i <= N; i++)
    {
        nCm.push_back((char)i + '0');
    }
 
    int tmp = 0;
    do 
    {
        int res = stoi(nCm.substr(0, M));
 
        if (res > tmp)
        {
            for (int i = 0; i < M; i++)
            {
                cout << nCm[i] << " ";
            }
            cout << '\n';
            tmp = res;
        }
    } while (next_permutation(nCm.begin(), nCm.end()));
 
    return 0;
}
Colored by Color Scripter

 

방법 2는 그냥 할수 있어서 해본것이다. 

이문제에서는 방법1이 더 좋은 풀이. 

결과를 입력하는 배열을 int배열보다 char배열로 선언하는 게 더 빠르고 깔끔하다.

 

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

[BOJ]15651번: N과 M (3)(c++)  (0) 2020.05.05
[BOJ]15650번: N과 M (2)(c++)  (0) 2020.05.04
[BOJ]1748번: 수 이어 쓰기 1(c++)  (0) 2020.05.03
[BOJ]6064번: 카잉달력(c++)  (0) 2020.05.03
[BOJ]14500번: 테트로미노(c++)  (0) 2020.05.03

댓글