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
- XR Interaction Toolkit
- 시뮬레이션
- c++
- 투 포인터
- 수학
- 재귀
- 구현
- 다이나믹 프로그래밍
- 트리
- 브루트포스
- VR
- 문자열
- 백트래킹
- 유니온 파인드
- 누적 합
- 정렬
- 우선순위 큐
- Team Fortress 2
- 스택
- 알고리즘
- 유니티
- DFS
- 백준
- 그래프
- ue5
- 그리디 알고리즘
- BFS
- 자료구조
- 다익스트라
- Unreal Engine 5
Archives
- Today
- Total
1일1알
백준 20365번 블로그2 C++ 본문
https://www.acmicpc.net/problem/20365
20365번: 블로그2
neighbor 블로그를 운영하는 일우는 매일 아침 풀고 싶은 문제를 미리 정해놓고 글을 올린다. 그리고 매일 밤 각각의 문제에 대하여, 해결한 경우 파란색, 해결하지 못한 경우 빨간색으로 칠한
www.acmicpc.net
B를 먼저 쭉 칠해놓은 경우와 R을 먼저 쭉 칠해놓은 경우를 비교해서 작은 값을 구한다.
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n;
string str;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
cin >> str;
int ans = n;
int ans1 = 1;
for (int i = 0; i < n;) {
if (str[i] == 'B') {
i++;
continue;
}
ans1++;
while (true) {
if (i >= n) break;
if (str[i] == 'B') break;
i++;
}
}
ans = min(ans, ans1);
int ans2 = 1;
for (int i = 0; i < n;) {
if (str[i] == 'R') {
i++;
continue;
}
ans2++;
while (true) {
if (i >= n) break;
if (str[i] == 'R') break;
i++;
}
}
ans = min(ans, ans2);
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 1986번 체스 C++ (0) | 2023.06.01 |
---|---|
백준 15664번 N과 M(10) C++ (0) | 2023.05.30 |
백준 10972번 다음 순열 C++ (0) | 2023.05.28 |
백준 19942번 다이어트 C++ (0) | 2023.05.27 |
백준 14675번 단절점과 단절선 C++ (0) | 2023.05.26 |