반응형
<코드>
#include<iostream>
#include<algorithm>
using namespace std;
bool check[9];
int num[9], ans[9];
int N, M;
void dfs(int x, int cnt)
{
if (cnt == M)
{
for (int i = 0; i < M; i++)
cout << ans[i] << " ";
cout << '\n';
return;
}
int tmp = -1;
for (int i = x; i < N; i++)
{
if (tmp != num[i])
{
tmp = num[i];
ans[cnt] = num[i];
check[i] = true;
dfs(i, cnt + 1);
check[i] = false;
}
}
}
int main()
{
cin >> N >> M;
for (int i = 0; i < N; i++)
{
cin >> num[i];
}
sort(num, num + N); // 오름차순 정렬
dfs(0, 0);
}
반응형
'🧩PS > 🥈Nomal' 카테고리의 다른 글
[C/C++] 백준 15657번 - N과 M (8) (0) | 2021.01.15 |
---|---|
[C/C++] 백준 15654번 - N과 M (5) (0) | 2021.01.15 |
[C/C++] 백준 15665번 - N과 M (11) (0) | 2021.01.15 |
[C/C++] 백준 15664번 - N과 M (10) (0) | 2021.01.15 |
[C/C++] 백준 17610번 - 양팔저울 (0) | 2021.01.15 |