본문 바로가기
알고리즘/BOJ

[BOJ] 15651. N과 M (3)

by hyerann 2019. 4. 16.

https://www.acmicpc.net/problem/15651

 

15651번: N과 M (3)

한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다. 수열은 사전 순으로 증가하는 순서로 출력해야 한다.

www.acmicpc.net

N과 M (3)은 N과 M (1)과 달리 같은 수를 여러 번 골라도 된다는 조건이 있기 때문에 visited[] 배열을 관리할 필요가 없다는 차이점이 있다.

#include <iostream>
#include <ios>
#include <vector>
using namespace std;

int N, M;
int numbers[7];
vector<int> series;
void dfs(int cnt);
void print();

int main() {
	cin.tie(0); ios::sync_with_stdio(0);
	cin >> N >> M;
	dfs(0);
	return 0;
}

void dfs(int cnt) {
	if (cnt == M) {
		print();
		return;
	}

	for (int i = 1; i <= N; i++) {
		series.push_back(i);
		dfs(cnt + 1);
		series.pop_back();
	}
}

void print() {
	for (int i = 0; i < M; i++) {
		cout << series[i] << ' ';
	}
	cout << "\n";
}

'알고리즘 > BOJ' 카테고리의 다른 글

[BOJ] 15655. N과 M (6)  (0) 2019.04.17
[BOJ] 15654. N과 M (5)  (0) 2019.04.17
[BOJ] 15652. N과 M (4)  (0) 2019.04.17
[BOJ] 15650. N과 M (2)  (0) 2019.04.16
[BOJ] 15649. N과 M (1)  (0) 2019.04.16

댓글