Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 과제진행하기
- 비트마스크
- 스택
- 우박수열정적분
- JS스터디
- 타겟넘버
- solved.ac골드
- pccp기출문제
- DP
- 두원사이의정수쌍
- Lv2
- 알고리즘문제풀이
- 최소스패닝트리
- JS
- 2023카카오블라인드코테
- Lv3
- React.StrictMode
- 이중지도
- 5강클로저
- [pccp 기출문제]
- c++
- 프로그래머스
- 지도 여러개
- 정렬
- div2개
- 코어자바스크립트
- 백준알고리즘
- 알고리즘 문제풀이
- 백준 알고리즘
- solved.ac플래티넘
Archives
- Today
- Total
호지
[프로그래머스] 메뉴 리뉴얼 문제풀이 c++ 본문
DFS와 map을 이용한 문제이다.
전체에서 course의 개수만큼 뽑는 모든 경우의 수를 탐색한다.(조합,dfs)
map으로 각 조합이 가능한 경우의 수를 저장하고,
max_order로 가장 많이 주문된 코스를 구한다.
최소주문횟수는 2회이므로 max_order>1일경우에만
map 탐색을 통해 max_order인 코스를 구하여
answer에 push한다.
정렬된 결과를 출력해야하므로 answer을 마지막에 sort한다.
#include <string>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
map<string, int> m;
int max_order = -1;
void DFS(string order, string list, int depth){
if(list.size() == depth){
int tmp = ++m[list];
max_order = max(max_order,tmp);
}
else{
for(int i=0; i<order.size(); i++){
DFS(order.substr(i+1), list+order[i], depth);
}
}
}
vector<string> solution(vector<string> orders, vector<int> course) {
vector<string> answer;
for(auto &order:orders){
sort(order.begin(),order.end());
}
for(int c:course){
max_order = -1;
for(auto &order:orders){
if(order.size()>=c)
DFS(order,"",c);
}
if(max_order>1){
for(auto it = m.begin(); it!= m.end(); it++){
if(it->second == max_order){
answer.push_back(it->first);
}
}
}
m.clear();
}
sort(answer.begin(), answer.end());
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 뉴스 클러스터링 문제풀이 c++ (0) | 2022.04.13 |
---|---|
[프로그래머스] 괄호 변환 문제풀이 c++ (0) | 2022.04.13 |
[프로그래머스] 행렬 테두리 회전하기 문제풀이 c++ (0) | 2022.04.12 |
[프로그래머스] 짝지어 제거하기 c++ (0) | 2022.04.11 |
[프로그래머스] 타겟넘버 c++ (0) | 2022.04.11 |
Comments