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 | 29 | 30 |
Tags
- VR
- 그래프
- 알고리즘
- 백준
- 백트래킹
- 자료구조
- 시뮬레이션
- 유니티
- 정렬
- Team Fortress 2
- ue5
- 우선순위 큐
- 그리디 알고리즘
- 재귀
- 수학
- 다익스트라
- DFS
- XR Interaction Toolkit
- 구현
- 누적 합
- 다이나믹 프로그래밍
- c++
- 스택
- 투 포인터
- 유니온 파인드
- Unreal Engine 5
- 트리
- 브루트포스
- 문자열
- BFS
Archives
- Today
- Total
1일1알
백준 1475번 방 번호 C++ 본문
숫자들이 얼마나 필요한지 map에 저장하고 6과 9는 같은 걸로 처리해서 문제를 해결하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
map<int, int> mp;
string str;
cin >> str;
int ans = 0;
int sum = 0;
for (int i = 0; i < str.length(); i++) {
mp[str[i] - '0']++;
}
for (int i = 0; i <= 9; i++) {
if (i == 6 || i == 9) {
sum += mp[i];
continue;
}
ans = max(ans, mp[i]);
}
if (sum % 2 == 0) {
ans = max(ans, sum / 2);
}
else {
ans = max(ans, (sum / 2) + 1);
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 4963번 섬의 개수 C++ (0) | 2022.03.26 |
---|---|
백준 1120번 문자열 C++ (0) | 2022.03.24 |
백준 6198번 옥상 정원 꾸미기 C++ (0) | 2022.03.21 |
백준 2174번 로봇 시뮬레이션 C++ (0) | 2022.03.20 |
백준 2688번 줄어들지 않아 C++ (0) | 2022.03.19 |