Notice
Recent Posts
Recent Comments
Link
거의 알고리즘 일기장
N과 M 본문
https://www.acmicpc.net/workbook/view/2052
풀이방법
이 N과 M의 풀이방식이 다 똑같고 중복이나 오름차순? 같은 추가 옵션들만 추가해주면 됨. 그러므로 N과 M(12) 소스코드를 참고하시길 바란다.
코드
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int N, M;
vector<int> num;
vector<vector<int>> answer;
bool isVisited[9];
bool cmp(const vector<int>& a, const vector<int>& b)
{
for (int i = 0; i < M; i++)
{
if (a[i] == b[i] && i !=M-1) continue;
return a[i] < b[i];
}
}
void GetSequence(int cnt, vector<int>visited)
{
if (cnt == M)
{
//중복일시
answer.push_back(visited);
return;
}
for (int i = 0; i < N; i++)
{
if (!visited.empty() && num[i] < visited[visited.size() - 1])
continue;
visited.push_back(num[i]);
GetSequence(cnt + 1, visited);
visited.erase(--end(visited));
}
}
int main()
{
//input
cin >> N >> M;
int n;
for (int i = 0; i < N; i++)
{
cin >> n;
num.push_back(n);
}
sort(begin(num), end(num));
GetSequence(0, vector<int>(0));
sort(begin(answer), end(answer), cmp);
vector<int> before;
for (auto ans : answer)
{
if (before == ans)
continue;
before = ans;
for (auto ele : ans)
cout << ele << ' ';
cout << '\n';
}
return 0;
}
반응형
'알고리즘 문제풀이' 카테고리의 다른 글
백준 13306번 _ 트리 (0) | 2020.06.26 |
---|---|
백준 1655번 _ 가운데를 말해요 (0) | 2020.06.24 |
백준 9251, 9252, 1958 _ LCS 1, 2, 3 (0) | 2020.06.17 |
백준 12852번 _ 1로 만들기 2 (0) | 2020.06.13 |
백준 12738번, 14003번 _ 가장 긴 증가하는 부분 수열 3, 5 (0) | 2020.06.13 |
Comments