서의 공간
[백준] 15650_N과 M (2) 본문
[문제]: 15650번: N과 M (2) (acmicpc.net)
#include <iostream>
using namespace std;
int n, m;
int arr[10];
void solution(int k, int p)
{
if (k == m) {
for (int i = 0; i < m; ++i)
cout << arr[i] << ' ';
cout << '\n';
return;
}
for (int i = p + 1; i <= n; ++i) {
arr[k] = i;
solution(k + 1, i);
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
cin >> n >> m;
solution(0, 0);
return 0;
}
'Algorithm > 백준' 카테고리의 다른 글
[백준] 15652_N과 M (4) (0) | 2021.02.06 |
---|---|
[백준] 15651_N과 M (3) (0) | 2021.02.06 |
[백준] 15649_N과 M (1) (0) | 2021.02.06 |
[백준] 2447_별 찍기 - 10 (0) | 2021.02.06 |
[백준] 9020_골드바흐의 추측 (0) | 2021.02.03 |
Comments