• 문제 링크
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;
}
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 1655 가운데를 말해요 - Data Structure / Java (0) | 2022.09.29 |
---|---|
[백준] 1717 집합의 표현 - Data Structure / Java (0) | 2022.09.28 |
[백준] 6198 옥상 정원 꾸미기 - Data Structure / Java (0) | 2022.09.26 |
[백준] 1062 가르침 - Backtracking / Java (0) | 2022.09.25 |
[백준] 16197 두 동전 - Backtracking / Java (0) | 2022.09.24 |
댓글