풀이
"백준 15650, N과 M (2)"를 참고해서 풀이했다.
기존의 코드에 같은 수를 여러번 고를 수 있도록 수정만 하면 된다.
for (j = 0; j < depth; j++)
if (arr[j] > i) break; // arr[j]에 담긴 수보다 작은 경우에만 저장하지 않는다.
소스코드
#include <stdio.h>
int arr[8], N, M;
void BT(int depth){
for (int i = 1; i <= N; i++){
if (!depth) arr[0] = i;
else{
int j;
for (j = 0; j < depth; j++)
if (arr[j] > i) break;
if (j == depth) arr[depth] = i;
else continue;
}
if (depth + 1 == M){
for (int idx = 0; idx < M; idx++)
printf("%d ", arr[idx]);
putchar(10);
}else BT(depth + 1);
}
}
int main(){
scanf("%d %d", &N, &M);
BT(0);
}
출처 및 참고자료
'PS > Baekjoon Online Judge' 카테고리의 다른 글
[백준 15657] N과 M (8) [C] (0) | 2021.08.10 |
---|---|
[백준 15654] N과 M (5) [C] (0) | 2021.08.10 |
[백준 1788] 피보나치 수의 확장 [C] (0) | 2021.08.10 |
[백준 5430] AC [C] (1) | 2021.08.09 |
[백준 15650] N과 M (2) [C] (0) | 2021.08.09 |