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
- ue5
- 백트래킹
- 트리
- 정렬
- 유니온 파인드
- 시뮬레이션
- BFS
- 구현
- 유니티
- 다익스트라
- Unreal Engine 5
- 알고리즘
- 수학
- 브루트포스
- c++
- 백준
- 투 포인터
- Team Fortress 2
- 문자열
- 그래프
- VR
- 자료구조
- 우선순위 큐
- 누적 합
- 그리디 알고리즘
- DFS
- 재귀
- XR Interaction Toolkit
- 스택
- 다이나믹 프로그래밍
Archives
- Today
- Total
1일1알
백준 20310번 타노스 C++ 본문
https://www.acmicpc.net/problem/20310
0은 앞에서부터 0의 절반의 개수, 1은 뒤에서부터 1의 절반의 개수에 위치한 문자만 출력하였다.
#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;
vector<bool> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int cnt_0 = 0;
int cnt_1 = 0;
string str;
cin >> str;
v = vector<bool>(str.length(), false);
for (int i = 0; i < str.length(); i++) {
if (str[i] == '0') cnt_0++;
else cnt_1++;
}
int targetCnt = cnt_0 / 2;
int cnt = 0;
for (int i = 0; i < str.length(); i++) {
if (cnt == targetCnt) break;
if (str[i] != '0') continue;
v[i] = true;
cnt++;
}
targetCnt = cnt_1 / 2;
cnt = 0;
for (int i = str.length() - 1; i >= 0; i--) {
if (cnt == targetCnt) break;
if (str[i] != '1') continue;
v[i] = true;
cnt++;
}
for (int i = 0; i < str.length(); i++) {
if (v[i] == false) continue;
cout << str[i];
}
}
'알고리즘' 카테고리의 다른 글
백준 14940번 쉬운 최단거리 C++ (0) | 2023.01.17 |
---|---|
백준 2823번 유턴 싫어 C++ (1) | 2023.01.16 |
백준 17141번 연구소 2 C++ (0) | 2023.01.14 |
백준 17451번 평행 우주 C++ (0) | 2023.01.13 |
백준 2660번 회장뽑기 C++ (0) | 2023.01.12 |