Recent Posts
Notice
No Rules Rules
N과 M (5) (feat. 백준, 15654번) 본문
728x90
반응형
N과 M (5)
https://www.acmicpc.net/problem/15654
// 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