거북이의 IT 공부

[백준 9012] 괄호 - C++ / 알고리즘 '스택' 본문

Baekjoon

[백준 9012] 괄호 - C++ / 알고리즘 '스택'

버니빈 2020. 4. 9. 22:46

문제

https://www.acmicpc.net/problem/9012

 

9012번: 괄호

문제 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. 그 중에서 괄호의 모양이 바르게 구성된 문자열을 올바른 괄호 문자열(Valid PS, VPS)이라고 부른다. 한 쌍의 괄호 기호로 된 “( )” 문자열은 기본 VPS 이라고 부른다. 만일 x 가 VPS 라면 이것을 하나의 괄호에 넣은 새로운 문자열 “(x)”도 VPS 가 된다. 그리고 두 VPS x 와 y를 접합(conc

www.acmicpc.net

나의 코드 - C++

#include 
#include 
#include 

using namespace std;

bool check(string str) {
	stack  s;
	int len = str.length();  //string.length() 함수

	for (int i = 0; i < len; i++) {
		if (str[i] == '(')  //string자료형은 배열처럼 조회가능!
			s.push(str[i]);
		else {
			if (!s.empty())
				s.pop();
			else 
				return 0;  //')'가 더 많은 경우
		}
	}
	if (!s.empty())
		return 0;  //'('가 더 많은 경우
	else 
		return 1;
}

int main() {
	int t;

	cin >> t;

	for (int i = 0; i < t; i++) {
		string vps;
		cin >> vps;
		
		if (check(vps))
			cout << "YES" << "\n";
		else cout << "NO" << "\n";
	}
}

 

 

Comments