본문 바로가기
Problem Solving/Baekjoon

[백준] 3015 오아시스 재결합 - Data Structure / Java

by graycode 2022. 9. 27.

 문제 링크

 

3015번: 오아시스 재결합

첫째 줄에 줄에서 기다리고 있는 사람의 수 N이 주어진다. (1 ≤ N ≤ 500,000) 둘째 줄부터 N개의 줄에는 각 사람의 키가 나노미터 단위로 주어진다. 모든 사람의 키는 231 나노미터 보다 작다. 사람

www.acmicpc.net

 

 풀이 과정

 

 풀이 코드

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.Stack;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));

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

        Stack<Pair> stk = new Stack<>();
        long cnt = 0;

        for (int i = 0; i < n; i++) {
            int h = Integer.parseInt(br.readLine());
            Pair cur = new Pair(h, 1);

            while (!stk.empty() && stk.peek().height <= h) {
                Pair pair = stk.pop();
                cnt += pair.cnt;

                if (pair.height == h)
                    cur.cnt += pair.cnt;
            }

            if (!stk.empty())
                cnt++;
            stk.push(cur);
        }

        bw.write(String.valueOf(cnt));
        bw.flush();
    }

    private static class Pair {
        int height, cnt;

        public Pair(int height, int cnt) {
            this.height = height;
            this.cnt = cnt;
        }
    }

}

댓글