-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver IV] Title: 균형잡힌 세상, Time: 76 ms, Memory: 31120 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# [Silver IV] 균형잡힌 세상 - 4949 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/4949) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 31120 KB, 시간: 76 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 스택, 문자열 | ||
|
||
### 제출 일자 | ||
|
||
2024년 3월 30일 19:06:15 | ||
|
||
### 문제 설명 | ||
|
||
<p>세계는 균형이 잘 잡혀있어야 한다. 양과 음, 빛과 어둠 그리고 왼쪽 괄호와 오른쪽 괄호처럼 말이다.</p> | ||
|
||
<p>정민이의 임무는 어떤 문자열이 주어졌을 때, 괄호들의 균형이 잘 맞춰져 있는지 판단하는 프로그램을 짜는 것이다.</p> | ||
|
||
<p>문자열에 포함되는 괄호는 소괄호("()") 와 대괄호("[]")로 2종류이고, 문자열이 균형을 이루는 조건은 아래와 같다.</p> | ||
|
||
<ul> | ||
<li>모든 왼쪽 소괄호("(")는 오른쪽 소괄호(")")와만 짝을 이뤄야 한다.</li> | ||
<li>모든 왼쪽 대괄호("[")는 오른쪽 대괄호("]")와만 짝을 이뤄야 한다.</li> | ||
<li>모든 오른쪽 괄호들은 자신과 짝을 이룰 수 있는 왼쪽 괄호가 존재한다.</li> | ||
<li>모든 괄호들의 짝은 1:1 매칭만 가능하다. 즉, 괄호 하나가 둘 이상의 괄호와 짝지어지지 않는다.</li> | ||
<li>짝을 이루는 두 괄호가 있을 때, 그 사이에 있는 문자열도 균형이 잡혀야 한다.</li> | ||
</ul> | ||
|
||
<p>정민이를 도와 문자열이 주어졌을 때 균형잡힌 문자열인지 아닌지를 판단해보자.</p> | ||
|
||
### 입력 | ||
|
||
<p>각 문자열은 마지막 글자를 제외하고 영문 알파벳, 공백, 소괄호("( )"), 대괄호("[ ]")로 이루어져 있으며, 온점(".")으로 끝나고, 길이는 100글자보다 작거나 같다.</p> | ||
|
||
<div>입력의 종료조건으로 맨 마지막에 온점 하나(".")가 들어온다.</div> | ||
|
||
### 출력 | ||
|
||
<p>각 줄마다 해당 문자열이 균형을 이루고 있으면 "yes"를, 아니면 "no"를 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import sys | ||
|
||
|
||
pal_pair = {')': '(', ']':'['} | ||
result = [] | ||
while True: | ||
palindrom = [] | ||
input_line = sys.stdin.readline().rstrip() | ||
if input_line == '.': | ||
break | ||
else: | ||
word = "yes" | ||
for char in input_line: | ||
if char in ['(', '[']: | ||
palindrom.append(char) | ||
elif char in [')', ']']: | ||
if not palindrom or pal_pair[char] != palindrom.pop(): | ||
word = "no" | ||
break | ||
if len(palindrom) > 0: | ||
word = "no" | ||
result.append(word) | ||
|
||
for str in result: | ||
print(str) | ||
|