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
- 토마토
- C#
- 스프링 입문
- 김영한
- redis
- 스프링 핵심 원리
- 우아한레디스
- inflearn
- Window-Via-c/c++
- FIFO paging
- Four Squares
- HTTP
- OS
- 열혈 TCP/IP 소켓 프로그래밍
- Spring
- C++
- 윤성우 저자
- 이펙티브코틀린
- 운영체제
- 우아한 테크 세미나
- Operating System.
- BOJ
- 에러핸들링
- TCP/IP
- n타일링2
- 10026번
- 2475번
- 제프리리처
- 열혈 tcp/ip 프로그래밍
- Operating System
Archives
- Today
- Total
나의 브을로오그으
[c++] 5430번 : AC 본문
https://www.acmicpc.net/problem/5430
#include <iostream>
#include <vector>
#include <cstring>
using namespace std;
#define MAX_NUM_SIZE 100'001
#define MAX_STRING_SIZE 400'001
class AC
{
public:
AC()
{
mRevIndex = 1, mStart = 0, mEnd = 0;
mVec.resize(MAX_NUM_SIZE, 0);
memset(mStrFunc, 0, sizeof(mStrFunc));
}
bool Process()
{
int revCount = 0, i = 0;
while(mStrFunc[i] != '\0')
{
if (mStrFunc[i] == 'R')
{
++revCount;
}
else
{
if (isEmpty() == true)
{
cout << "error" << '\n';
return false;
}
else
{
if ((revCount & 1) == 1)
{
reverseArray();
revCount = 0;
}
deleteData();
}
}
++i;
}
if (revCount > 0)
{
if ((revCount & 1) == 1)
{
reverseArray();
}
}
return true;
}
void Input()
{
Init();
cin.getline(mStrFunc, MAX_NUM_SIZE);
char str[MAX_STRING_SIZE] = { 0, };
int size = 0;
cin >> size;
cin.ignore();
cin.getline(str, MAX_STRING_SIZE);
int i = 0, n = 0;
while (str[i] != ']')
{
int tmp = str[i] - '0';
if (tmp >= 0 && tmp <= 9)
{
n *= 10;
n += tmp;
}
else if (str[i] == ',')
{
mVec[mEnd] = n;
++mEnd;
n = 0;
}
++i;
}
if (size > 0)
{
mVec[mEnd] = n;
++mEnd;
}
return;
}
void Output()
{
cout << '[';
int start = mRevIndex > 0 ? mStart : mEnd - 1;
int end = mRevIndex > 0 ? mEnd: mStart - 1;
while (start != end)
{
cout << mVec[start];
if (distance(start, end) > 1)
{
cout << ',';
}
start += mRevIndex;
}
cout << ']' << '\n';
return;
}
private:
int mRevIndex;
int mStart, mEnd;
vector<int> mVec;
char mStrFunc[MAX_NUM_SIZE];
bool isEmpty()
{
return mEnd == mStart;
}
void Init()
{
mStart = 0, mEnd = 0, mRevIndex = 1;
memset(mStrFunc, 0, sizeof(mStrFunc));
return;
}
void reverseArray()
{
mRevIndex = ~(mRevIndex) + 1;
return;
}
void deleteData()
{
if (mRevIndex > 0) ++mStart; else --mEnd;
return;
}
int distance(int n1, int n2)
{
int res = n1 - n2;
return res > 0 ? res : ~res + 1;
}
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
AC ac;
int T = 0;
cin >> T;
cin.ignore();
for (int i = 0; i < T; ++i)
{
ac.Input();
bool bSuccess = ac.Process();
if (bSuccess == true)
{
ac.Output();
}
}
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 9375번 : 패션왕 신해빈 (0) | 2022.08.31 |
---|---|
[c++] 9095번 : 1, 2, 3 더하기 (0) | 2022.08.30 |
[c++] 2667번 : 단지번호붙이기 (0) | 2022.06.28 |
[c++] 2630번 색종이 만들기 (0) | 2022.06.28 |
[c++] 2606번 : 바이러스 (0) | 2022.06.28 |