Algorithm/BAEKJOON

[ C / C++ ] 백준 15651 N과M(3)

곽수진 2022. 5. 9. 19:50
반응형

문제

자연수 N과 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오.

  • 1부터 N까지 자연수 중에서 M개를 고른 수열
  • 같은 수를 여러 번 골라도 된다.

 

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <stdio.h>
using namespace std;

int n, m, ans[10];

void go(int index)
{
	if (index == m)
	{
		for (int i = 0; i < m; i++)
			printf("%d ", ans[i]);
		printf("\n");
		return;
	}

	for (int i = 1; i <= n; i++)
	{
		ans[index] = i;
		go(index + 1);
		ans[index] = 0;
	}
	return;
}

int main()
{
	scanf("%d%d", &n, &m);
	go(0);
}
반응형

'Algorithm > BAEKJOON' 카테고리의 다른 글

[ C / C++ ] 백준 15654 N과M(5)  (0) 2022.05.11
[ C / C++ ] 백준 15652 N과M(4)  (0) 2022.05.10
[ C / C++ ] 백준 15650 N과M(2)  (0) 2022.05.08
[ C / C++ ] 백준 15649 N과M(1)  (0) 2022.05.07
[ C / C++ ] 백준 14681 사분면 고르기  (0) 2022.05.06