programmerslevel2 의상문제 설명위 이미지를 클릭하면 해당 문제로 이동합니다.#include #include #include using namespace std;int solution(vector> clothes) { int answer = 1; unordered_map clo_ctg; for(vector a : clothes){ if(clo_ctg.find(a[1])==clo_ctg.end()){ clo_ctg.insert({a[1], 1}); } else clo_ctg[a[1]]++; } for(auto i = clo_ctg.begin(); i!=clo_ctg.end(); i++) answer*=(++(i..