No Rules Rules

N과 M (5) (feat. 백준, 15654번) 본문

생활/코테

N과 M (5) (feat. 백준, 15654번)

개발하는 완두콩 2023. 2. 3. 12:22
728x90
반응형

N과 M (5)
https://www.acmicpc.net/problem/15654

 

15654번: N과 M (5)

N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다. N개의 자연수 중에서 M개를 고른 수열

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int N, M, arr[10000], tmp[10000];
bool visit[10000];
void dfs(register int m){
    if(m == M){
        for(register int m = 0; m < M; ++m)
            cout << tmp[m] << " ";
        cout << "\n";
        return;
    }
    for(register int n = 0; n < N; ++n)
        if(!visit[n]){
            visit[n] = true;
            tmp[m] = arr[n];
            dfs(m + 1);
            visit[n] = false;
        }
}
int main() {
    ios::sync_with_stdio(false), cin.tie(NULL);
    cin >> N >> M;
    for(register int n = 0; n < N; ++n)
        cin >> arr[n];
    sort(arr, arr + N);
    dfs(0);
	return 0;
}
// *&)*@*

 

반응형

중복을 허용하지 않는 조합을 구하는 문제입니다.

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

:chino_shock: (feat. 백준, 27310번)  (0) 2023.02.06
1 (feat. 백준, 4375번)  (0) 2023.02.03
공 (feat. 백준, 1547번)  (0) 2023.02.03
가장 큰 금민수 (feat. 백준, 1526번)  (0) 2023.02.02
세로읽기 (feat. 백준, 10798번)  (0) 2023.02.01
Comments