티스토리 뷰
코딩테스트 대비 풀어본 문제이다.
처음 생각 - Stack
stack을 이용하여 풀려고 했다.
startBlock보다 큰 Block이 나올 때까지 stack에 넣어주었다.
for(int block = 1;block<W - 1;block++){
if(startBlock > blocks[block]){
stack.push(blocks[block]);
} else {
lowBlock = Math.min(startBlock, blocks[block]);
startBlock = blocks[block];
if(lowBlock != 0) {
answer += GetRainWater(stack, lowBlock);
}
}
}
startBlock보다 큰 Block이 나온다면 startBlock-stack.pop()을 answer에 더해준다
static int GetRainWater(Stack<Integer> stack, int lowBlock) {
int rain = 0;
while(!stack.isEmpty()){
rain += (lowBlock - stack.pop());
}
return rain;
}
반례 ⛔
testcase 6 1 4 0
각 index를 기준으로 maxLeft, maxRight 구하기 ❗
for (int block = 1; block < W - 1; block++) {
int maxLeft = GetMaxLeft(blocks, block);
int maxRight = GetMaxRight(blocks, block);
if (Math.min(maxLeft, maxRight) < blocks[block])
continue;
answer += Math.min(maxLeft, maxRight) - blocks[block];
}
private static int GetMaxRight(int[] blocks, int index) {
int max = -1;
for (int i = index + 1; i < W; i++) {
max = Math.max(max, blocks[i]);
}
return max;
}
private static int GetMaxLeft(int[] blocks, int index) {
int max = -1;
for (int i = 0; i < index; i++) {
max = Math.max(max, blocks[i]);
}
return max;
}
왼쪽 오른쪽의 최대값을 찾은 후 더 작은 값과 뺀 것을 answer에 더해준다.
주의사항 ⛔
해당 index의 block이 maxLeft, maxRight보다 큰 경우는 넘어가야 한다.
전체 코드
for (int block = 1; block < W - 1; block++) {
int maxLeft = GetMaxLeft(blocks, block);
int maxRight = GetMaxRight(blocks, block);
if (Math.min(maxLeft, maxRight) < blocks[block])
continue;
answer += Math.min(maxLeft, maxRight) - blocks[block];
}
private static int GetMaxRight(int[] blocks, int index) {
int max = -1;
for (int i = index + 1; i < W; i++) {
max = Math.max(max, blocks[i]);
}
return max;
}
private static int GetMaxLeft(int[] blocks, int index) {
int max = -1;
for (int i = 0; i < index; i++) {
max = Math.max(max, blocks[i]);
}
return max;
}
'알고리즘' 카테고리의 다른 글
Baekjoon 9935 문자열 폭발 - 메모리 초과 (0) | 2020.10.02 |
---|---|
Baekjoon 4949 균형잡힌 세상 - 코딩 테스트 (0) | 2020.10.02 |
Baekjoon 3687 성냥깨비 - DP (0) | 2020.09.27 |
Baekjoon 2003 수들의 합 2 - 투 포인터 (0) | 2020.09.24 |
Baekjoon 1072 게임- 수학(확률) (0) | 2020.09.24 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 테라폼
- Olympiad
- Kotlin
- Spring Boot
- 객체지향
- kotest
- C++
- 프로그래머스
- BAEKJOON
- JPA
- MSA
- 알고리즘
- Java
- 클린 코드
- 정규표현식
- 코테
- Spring
- 이팩티브 자바
- Algorithm
- 클린 아키텍처
- 디자인 패턴
- programmers
- node.js
- Effective Java
- AWS
- 이펙티브 자바
- 백준
- kkoon9
- 디자인패턴
- BOJ
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함