코딩테스트 준비/프로그래머스

[프로그래머스] - 의상(해시) c++

SeoburiFaust 2024. 2. 14. 15:57

문제

https://school.programmers.co.kr/learn/courses/30/lessons/42578

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

접근방법

옷의 종류별로 map에 넣고 하나씩 들어올 때마다 +1씩 해줬다.

 

코드

#include <string>
#include <vector>
#include <map>

using namespace std;

int solution(vector<vector<string>> clothes) {
    int answer = 0;
    map<string, int> check_clothes;
    for (auto& c : clothes) {
        check_clothes[c[1]]++;
    }
    if (check_clothes.empty()) return 0;
    answer = 1;
    for (auto& pair : check_clothes) {
        answer *= (pair.second + 1);
    }
    answer--;
    return answer;
}

개선할 점