반응형
N과 M (5)와 마찬가지로 input에 대해서 N과 M (3)의 코드를 조금만 수정하면 된다.
#include <stdio.h>
int N, M;
int list[10];
int input[10];
void outputList()
{
for (int i = 0; i < M;i++) printf("%d ", list[i]);
putchar('\n');
}
void DFS(int L)
{
if (L == M)
{
outputList();
return;
}
for (int i = 1; i <= N;i++)
{
list[L] = input[i];
DFS(L + 1);
}
}
int main(void)
{
scanf("%d %d", &N, &M);
for (int i = 1; i <= N; i++) scanf("%d", &input[i]);
for (int i = 1; i <= N - 1; i++)
{
for (int k = i + 1; k <= N; k++)
{
if (input[i] > input[k])
{
int tmp = input[i];
input[i] = input[k];
input[k] = tmp;
}
}
}
DFS(0);
return 0;
}
반응형
'알고리즘 > BAEKJOON' 카테고리의 다른 글
BOJ 15663 : N과 M (9) (0) | 2021.02.23 |
---|---|
BOJ 15657 : N과 M (8) - 중복 조합 combinations with repetition (0) | 2021.02.22 |
BOJ 15655 : N과 M (6) - 조합 combination (0) | 2021.02.22 |
BOJ 15654 : N과 M (5) - 순열 permutation (0) | 2021.02.22 |
BOJ 15652 : N과 M (4) - 중복 조합 combinations with repetition (0) | 2021.02.21 |
댓글