재밌고 어려운 IT를 이해해보자~!

[백준] 2493 본문

알고리즘

[백준] 2493

언제나즐거운IT 2024. 11. 27. 15:21

 

스택을 활용하되 해당 타워의 인덱스를 저장할 자료구조를 활용해야한다.

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
import java.util.StringTokenizer;

public class Main {
    static class Top {
        int idx;
        int height;
        
        Top(int idx, int height) {
            this.idx = idx;
            this.height = height;
        }
    }
    
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb = new StringBuilder();

        int N = Integer.parseInt(br.readLine());

        Stack<Top> stack = new Stack<>();

        StringTokenizer st = new StringTokenizer(br.readLine());

        for (int i = 1; i <= N; i++) {
            int num = Integer.parseInt(st.nextToken());

                while (!stack.isEmpty()) {
                    if (stack.peek().height < num) {
                        stack.pop();
                    }
                    else {
                         sb.append(stack.peek().idx + " ");
                         break;
                    }
                
                }
                if (stack.isEmpty()) {
                   sb.append("0 ");
                }
                stack.push(new Top(i,num));
            
        }
        System.out.println(sb);
    }
}

 

'알고리즘' 카테고리의 다른 글

[백준] 11298  (0) 2024.11.27
[백준] 6198  (0) 2024.11.27
소유주가 다른 땅에서 가장 큰 'ㄷ' 모양 찾기  (0) 2024.10.24
타일채우기 재귀 알고리즘  (0) 2024.08.10
코딩테스트 풀어보기!  (0) 2024.05.28
Comments