728x90
반응형
기본적인 스택 문제이다.
import sys
input = sys.stdin.readline
N = int(input())
li = [int(input()) for _ in range(N)]
stack, cnt = [li.pop()], 1
for n in li[::-1]:
if stack[-1] < n:
cnt += 1
stack.append(n)
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10527번 Judging Troubles(python) (0) | 2021.03.24 |
---|---|
백준 알고리즘 5568번 카드 놓기(python) (0) | 2021.03.24 |
백준 알고리즘 15666번 N과 M (12)(python) (0) | 2021.03.24 |
백준 알고리즘 15665번 N과 M (11)(python) (0) | 2021.03.24 |
백준 알고리즘 15664번 N과 M (10)(python) (0) | 2021.03.24 |