백준 9375번: 패션왕 신해빈 / C++
2023. 2. 7. 22:02ㆍ개인공부/코딩테스트
https://www.acmicpc.net/problem/9375
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <iostream>
#include <map>
using namespace std;
int main()
{
int TestCase =0;
cin >> TestCase;
for(int i=0; i<TestCase; ++i)
{
int Clothes =0;
cin >>Clothes;
if(Clothes == 0)
{
cout << 0 << '\n';
continue;
}
map<string,int> Closet;
for(int j=0; j<Clothes; ++j)
{
string name{};
string ClothesType{};
cin >> name >>ClothesType;
if(Closet.find(ClothesType) == Closet.end())
{
Closet.insert(pair<string,int>(ClothesType,1));
}
else
{
++Closet.find(ClothesType)->second;
}
}
int Result = 1;
for(auto iter = Closet.begin(); iter!=Closet.end(); ++iter)
{
Result *= iter->second+1;
}
cout << Result-1 << '\n';
}
return 0;
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 15650번: N과 M(2) / C++ (0) | 2023.02.08 |
---|---|
백준 15649번: N과 M(1) / C++ (0) | 2023.02.08 |
백준 1676번: 팩토리얼 0의 개수 / C++ (0) | 2023.02.07 |
백준 11050번: 이항 계수1/ C++ (0) | 2023.02.06 |
백준 3036번: 링/C++ (0) | 2023.02.06 |