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 |
Tags
- 오브젝트 풀링
- 백준 1103번 c++
- Lv.3
- 백준 2870번
- 프로그래머스
- Beakjoon
- Algorithm
- 플레이어 이동
- C#
- 코딩테스트
- 백준 1103번
- 2870번 수학숙제
- 17070번
- 백준 17070번
- c++
- 2870번 c++
- Lv2
- 2468 c++
- Unity
- dfs
- 백준 c++ 2468번
- 2870번 수학숙제 c++
- 유니티
- 백준
- 2870번
- 백준 17070번 c++
- 백준 c++ 2870번
- 코테
- 수학숙제
- 백준 1103번 게임
Archives
- Today
- Total
주녘공부일지
[백준 9375번 C++] Silver3. 패션왕 신해빈 본문
https://www.acmicpc.net/problem/9375
핵심 아이디어 및 정답 코드
- 해당 옷을 입지 않은 경우의 수를 같이 구하면 한번에 구할 수 있음
- 의상 종류 개수 + 1을 전부 곱하면, 아무것도 입지 않은 경우의 수가 포함되므로 마지막에 1을 빼줌
+ 처음에 DFS로 접근했다가 시간 초과를 경험함ㅠ;
정답 코드
#include <iostream>
#include <map>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int totalCount;
cin >> totalCount;
for (int i = 0; i < totalCount; i++)
{
map<string, int> m;
int count;
cin >> count;
for (int j = 0; j < count; j++)
{
string str;
cin >> str;
cin >> str;
if (m.find(str) == m.end())
m.insert({ str, 1 });
else
m[str]++;
}
int answer = 1;
for (auto iter = m.begin(); iter != m.end(); iter++)
answer *= (iter->second + 1);
cout << answer - 1 << '\n';
}
return 0;
}
'CodingTest > BeakJoon Silver' 카테고리의 다른 글
[백준 2486번 C++] Silver1. 안전 영역 (0) | 2024.12.13 |
---|---|
[백준 2870번 C++] Silver4. 수학숙제 (1) | 2024.12.08 |
[백준 4375번 C++] Silver3. 1 (0) | 2024.12.06 |
[백준 1629번 C++] Silver1. 곱셈 (0) | 2024.12.06 |