https://programmers.co.kr/learn/courses/30/lessons/12973
나의 풀이
#include <iostream>
#include<string>
#include <stack>
using namespace std;
int solution(string s)
{
int answer = 1;
stack<char> ctr;
for (int i = 0; i < s.size(); i++) {
if (ctr.empty() || ctr.top() != s[i]) {
ctr.push(s[i]);
}
else {
ctr.pop();
}
}
if (ctr.empty()) return 1;
else return 0;
}
처음에는 2중 반복문을 사용해서 문제를 풀었지만 효율성에서 시간초과가 났다.
그래서 stack을 사용해서 단일 for문으로 문제를 풀었다.
'전공공부 > 코딩테스트' 카테고리의 다른 글
(c++) 프로그래머스 "행렬 테두리 회전하기" (0) | 2022.03.07 |
---|---|
(c++) 프로그래머스 신고 결과 받기 (0) | 2022.01.14 |
(c++) 프로그래머스 "소수 만들기" (0) | 2022.01.13 |
(c++) 프로그래머스 "124 나라의 숫자" (0) | 2022.01.12 |
(c++) 프로그래머스 멀쩡한 사각형 (0) | 2022.01.12 |