728x90
https://www.acmicpc.net/problem/10828
나의 풀이
스택 구현 문제로
- push X: 정수 X를 스택에 넣는 연산이다.
- pop: 스택에서 가장 위에 있는 정수를 빼고, 그 수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다.
- size: 스택에 들어있는 정수의 개수를 출력한다.
- empty: 스택이 비어있으면 1, 아니면 0을 출력한다.
- top: 스택의 가장 위에 있는 정수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다.
다음을 구현해야 함
시간초과 코드
loop = int(input())
stack_list = []
for _ in range(loop):
command = list(map(str,input().split()))
if command[0] =='push':
stack_list.append(command[1])
elif command[0] == 'pop':
if stack_list == []:
print(-1)
else:
print(stack_list[-1])
del stack_list[-1]
elif command[0] == 'size':
print(len(stack_list))
elif command[0] == 'empty':
if stack_list :
print(0)
else:
print(1)
elif command[0] == 'top':
if stack_list:
print(stack_list[-1])
else:
print(-1)
시간 초과 발생함 pop 부분을 stack_list.pop()으로 변경하였으나 똑같이 발생
해결
import sys
loop = int(sys.stdin.readline())
stack_list = []
for _ in range(loop):
command = list(sys.stdin.readline().split())
if command[0] =='push':
stack_list.append(command[1])
elif command[0] == 'pop':
if stack_list == []:
print(-1)
else:
print(stack_list[-1])
del stack_list[-1]
elif command[0] == 'size':
print(len(stack_list))
elif command[0] == 'empty':
if stack_list :
print(0)
else:
print(1)
elif command[0] == 'top':
if stack_list:
print(stack_list[-1])
else:
print(-1)
백준에서 시간 초과가 뜨면 제일 먼저 확인해봐야 하는 것이 input()으로 변경 후 통과된 모습을 볼 수 있었다.
추가로 pop 부분 시간 비교를 해봤는데 똑같은 걸 알 수 있었다.
728x90
'Coding Test > Baekjoon' 카테고리의 다른 글
[Python] 파이썬 백준(9012) 괄호 (0) | 2023.04.04 |
---|---|
[Python] 파이썬 백준(10773) 제로 (0) | 2023.03.31 |
[Python] 파이썬 백준(5622) 다이얼 (0) | 2023.03.30 |
[Python] 파이썬 백준(2908) 상수 (0) | 2023.03.22 |
[Python] 파이썬 백준(1152) 단어의 개수 (0) | 2023.03.22 |