[C언어] 백준 15652 : N과 M (4)
같다. https://velog.io/@seochan99/15652-N-%EA%B3%BC-M-4 이사람 코드다.
유형을 익히자.
#include <stdio.h>
int n, m;
int result[1000];
void DFS(int depth, int cut)
{
int i;
if (depth == m)
{
for (int i = 0; i < m; i++)
printf("%d ", result[i]);
printf("\n");
}
else
{
for (i = 1; i <= n; i++)
{
if (cut <= i)
{
result[depth] = i;
DFS(depth + 1, i);
}
}
}
}
int main(void)
{
scanf("%d %d", &n, &m);
DFS(0, 0);
return 0;
}
16560에서 cut을 살리고 범위를 i이하로 수정해주면 된다
Author And Source
이 문제에 관하여([C언어] 백준 15652 : N과 M (4)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kimmainsain/C언어-백준-15652-N과-M-4저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)