From c14669aa64999608215cffa24a3482340b362ac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=9C=EB=A6=BC?= <40015447+srlee056@users.noreply.github.com> Date: Sat, 30 Mar 2024 19:06:22 +0900 Subject: [PATCH] =?UTF-8?q?[Silver=20IV]=20Title:=20=EA=B7=A0=ED=98=95?= =?UTF-8?q?=EC=9E=A1=ED=9E=8C=20=EC=84=B8=EC=83=81,=20Time:=2076=20ms,=20M?= =?UTF-8?q?emory:=2031120=20KB=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 44 +++++++++++++++++++ ...14\342\200\205\354\204\270\354\203\201.py" | 26 +++++++++++ 2 files changed, 70 insertions(+) create mode 100644 "\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/README.md" create mode 100644 "\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201.py" diff --git "a/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/README.md" "b/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/README.md" new file mode 100644 index 0000000..ab78a43 --- /dev/null +++ "b/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/README.md" @@ -0,0 +1,44 @@ +# [Silver IV] 균형잡힌 세상 - 4949 + +[문제 링크](https://www.acmicpc.net/problem/4949) + +### 성능 요약 + +메모리: 31120 KB, 시간: 76 ms + +### 분류 + +자료 구조, 스택, 문자열 + +### 제출 일자 + +2024년 3월 30일 19:06:15 + +### 문제 설명 + +
세계는 균형이 잘 잡혀있어야 한다. 양과 음, 빛과 어둠 그리고 왼쪽 괄호와 오른쪽 괄호처럼 말이다.
+ +정민이의 임무는 어떤 문자열이 주어졌을 때, 괄호들의 균형이 잘 맞춰져 있는지 판단하는 프로그램을 짜는 것이다.
+ +문자열에 포함되는 괄호는 소괄호("()") 와 대괄호("[]")로 2종류이고, 문자열이 균형을 이루는 조건은 아래와 같다.
+ +정민이를 도와 문자열이 주어졌을 때 균형잡힌 문자열인지 아닌지를 판단해보자.
+ +### 입력 + +각 문자열은 마지막 글자를 제외하고 영문 알파벳, 공백, 소괄호("( )"), 대괄호("[ ]")로 이루어져 있으며, 온점(".")으로 끝나고, 길이는 100글자보다 작거나 같다.
+ +각 줄마다 해당 문자열이 균형을 이루고 있으면 "yes"를, 아니면 "no"를 출력한다.
+ diff --git "a/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201.py" "b/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201.py" new file mode 100644 index 0000000..2015a65 --- /dev/null +++ "b/\353\260\261\354\244\200/Silver/4949.\342\200\205\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201/\352\267\240\355\230\225\354\236\241\355\236\214\342\200\205\354\204\270\354\203\201.py" @@ -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) + \ No newline at end of file