Be a developer

백준 15652 N과 M (4) 본문

알고리즘

백준 15652 N과 M (4)

중국고대사 2019. 4. 4. 16:23

N과 M (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
#include <iostream>
#include <algorithm>
#include <vector>
#include <cstring>
using namespace std;
 
int n, m;
vector<int> v;
 
void solve(int num) {
    //뽑아야 할 개수만큼 뽑고 나면 출력한다.
    if (v.size() == m) {
        for (auto x : v) {
            printf("%d ", x);
        }
        printf("\n");
        return;
    }
    for (int i = num; i <= n; i++) {
        //중복되면 안되므로 이미 들어있는 원소인지 확인한다.
        v.push_back(i);
        solve(i);
        v.pop_back();
    }
}
 
int main(int argc, char** argv) {
    cin >> n >> m;
 
    solve(1);
 
    return 0;
}
cs

'알고리즘' 카테고리의 다른 글

백준 11724 연결 요소의 개수  (0) 2019.04.05
백준 1260 DFS와 BFS  (0) 2019.04.05
백준 15651 N과 M (3)  (0) 2019.04.04
백준 15650 N과 M (2)  (0) 2019.04.04
백준 15649 N과 M (1)  (0) 2019.04.04
Comments