백준 9375
백준 9375 : 패션왕 신해빈
- 옷의 종류만 사용한다. 옷의 이름은 필요 X
- 해당 옷 종류를 안 입는 경우까지 더해 (종류별 옷 수+1) 개를 조합하는 모든 경우의 수를 계산
정답 코드
#include <iostream>
#include <map>
using namespace std;
int tc, n;
string name, cate;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>tc;
for(int i=0; i<tc; i++) {
map<string, int> m;
int ans=1;
cin>>n;
for(int j=0; j<n; j++) {
cin>>name>>cate;
if(m.find(cate)==m.end()) { //없으면 새로 추가
m.insert({cate, 1});
}
else {
m[cate]++;
}
}
for(auto k: m) {
ans*=(k.second + 1);
}
cout<<ans-1<<"\n";
}
return 0;
}
Author And Source
이 문제에 관하여(백준 9375), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@msdio/백준-9375저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)