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
- 1일1알골
- 알고리즘
- 후기
- 위젯킷
- spritekit
- widget
- uikit
- 백준
- 네트워크
- Swift
- SwiftUI
- TCA
- c++
- 웹
- 컴퓨터그래픽스
- composable architecture
- widgetkit
- 멋쟁이사자처럼
- 운영체제
- 문법
- cs
- 스유
- dispatchqueue
- Protocol
- 대외활동
- swift concurrency
- 스위프트
- 멋사
- 리액트
- 영남대
Archives
- Today
- Total
맛동산이
(백준 9012 c++) 괄호 본문
문제
https://www.acmicpc.net/problem/9012
정답코드
#include <stack>
#include <vector>
#include <iostream>
#include <string>
using namespace std;
int main()
{
int m;
cin >> m;
for (int c = 0; c < m; c++)
{
string n;
cin >> n;
stack<char> arr1;
for (int a = 0; a < n.length(); a++)
{
if (n[a] == '(')
{
arr1.push(n[a]);
}
else
{
if (arr1.empty())
{
arr1.push(n[a]);
}
else if (arr1.top() == '(')
{
arr1.pop();
}
}
}
if (!arr1.empty())
{
cout << "NO"
<< "\n";
}
else
{
cout << "YES"
<< "\n";
}
}
}
해설
기본적인 스택문제, 큐로 풀어도 상관없음
근데 나는 이거 풀때 좀 헷갈렷던게 만약에 ))(( 이렇게 들어오는것도 처리하게 되면 어떻게 하지? 라는 생각을 하게됨.
이거는 내가 볼때 ((()))(()) 이런 vps 처리를 하는 전제조건이 있기 때문에 ))) 이렇게 들어오는 입력값을 배제 하고 푼는 것 같음
그리고 처음에 나는 그래서 )) 와 (( 이런거를 다 고려한 코드를 짯는데 segmentation fault가 남, 왜그런지 아직 잘 모르겠음
반응형
'알고리즘 > 백준' 카테고리의 다른 글
(백준 10816 c++) 숫자카드 2 (0) | 2022.07.07 |
---|---|
(백준 2164 c++) 카드2 (0) | 2022.07.05 |
(백준 1764) 듣보잡 (0) | 2022.06.29 |
(백준 1269) 대칭 차집합 (0) | 2022.06.29 |
(백준 14425) 문자열 집합 (0) | 2022.06.27 |