https://www.acmicpc.net/problem/17298
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import sys
input = sys.stdin.readline
n = int(input())
a = list(map(int, input().split()))
stack = [0]
ans = [-1]*n
for i in range(1,n):
while stack and a[stack[-1]] < a[i]:
ans[stack.pop()] = a[i]
stack.append(i)
print(*ans)
|
cs |
'백준' 카테고리의 다른 글
백준 2750번: 수 정렬하기 (1) | 2023.02.04 |
---|---|
백준 11286번: 절댓값 힙 (0) | 2023.02.04 |
백준 1874번: 스택 수열 (0) | 2023.02.03 |
백준 11003번: 최솟값 찾기 (0) | 2023.01.31 |
백준 12891: DNA 비밀번호 (0) | 2023.01.28 |