티스토리 뷰
1. 울타리의 최대 넓이를 찾는 방법은 아래와 같다.
1) 울타리를 N/2등분 하여, 왼쪽 울타리에서 최대 넓이를 찾는다.
2) 울타리를 N/2등분 하여, 오른쪽 울타리에서 최대 넓이를 찾는다.
3) 울타리의 N/2등분한 위치를 기점으로 왼쪽과 오른쪽을 탐색하며 최대 넓이를 찾는다. 반드시 N/2 위치가 포함
되어야 한다.
[소스 코드]
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { static int C, N; static int[] h; static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; public static void main(String[] args) throws NumberFormatException, IOException { C = Integer.parseInt(br.readLine()); for (int t = 1; t <= C; t++) { int ans = Integer.MIN_VALUE; N = Integer.parseInt(br.readLine()); st = new StringTokenizer(br.readLine()); h = new int[N]; for (int i = 0; i < N; i++) h[i] = Integer.parseInt(st.nextToken()); System.out.println(solve(0, N - 1)); } } public static int solve(int left, int right) { if (left == right) return h[left]; int mid = (left + right) / 2; int result = Math.max(solve(left, mid), solve(mid + 1, right)); int low = mid; int high = mid + 1; int height = Math.min(h[low], h[high]); result = Math.max(result, 2 * height); while (low > left || high < right) { if (high < right && (low == left || h[high + 1] > h[low - 1])) { high += 1; height = Math.min(height, h[high]); } else { low -= 1; height = Math.min(height, h[low]); } result = Math.max(result, (high - low + 1) * height); } return result; } } | cs |
'알고리즘 문제 > 알고스팟' 카테고리의 다른 글
[알고스팟] 고대어사전 :: 늦깎이 IT (0) | 2019.03.22 |
---|---|
[알고스팟] 쿼드 트리 뒤집기 :: 늦깎이 IT (0) | 2019.03.21 |
[알고스팟] 여행하는 외판원1 :: 늦깎이 IT (0) | 2019.03.14 |
[알고스팟] 게임판 덮기 :: 늦깎이 IT (0) | 2019.03.14 |
[알고스팟] 소풍 :: 늦깎이 IT (0) | 2019.03.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 구현
- 탈주범 검거
- 최소힙
- 중간값
- DFS
- 연산자 끼워넣기
- 배열
- 알고리즘
- 브루트포스
- 탐색
- 정렬
- 영역 구하기
- 시뮬레이션
- 구슬 탈출2
- 힙
- 자바
- 최대힙
- 우선순위 큐
- 트리
- 나무 재테크
- SWEA
- 삼성
- 알고스팟
- 리스트
- 14888
- 백준
- BFS
- 큐
- 힙정렬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함