본문 바로가기
알고리즘/c++ 프로그래머스

[프로그래머스] 올바른괄호 c++

by 말린밴댕이_공부 2023. 5. 2.
반응형

문제 링크

https://school.programmers.co.kr/learn/courses/30/lessons/12909

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

 

코드 및 풀이

/*
그냥 닫는 갯수가 순서대로 카운팅할때 마다 더 크면 false
그리고 나중에 열고 닫는 괄호가 갯수다르면 false
*/
#include <string>
#include <iostream>

using namespace std;

bool solution(string s)
{
    bool answer = true;
    int open = 0;
    int close = 0;
   
    for(int i = 0; i < s.length();i++){
        if(s[i] == '(') open ++;
        else if (s[i] == ')') close++;
       
        if(open < close){
            answer = false;
            break;
        }
    }
    if(open != close)
        answer = false;
   

    return answer;
}
반응형

댓글