Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Tree
- hash table
- 구현
- Stack
- 자바
- simulation
- Binary Search
- sorting
- dynamic programming
- Method
- Number Theory
- Math
- 파이썬
- SQL
- Binary Tree
- database
- Matrix
- greedy
- string
- Data Structure
- array
- implement
- 코딩테스트
- java
- bit manipulation
- two pointers
- 코테
- geometry
- Counting
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Medium] 11. Container With Most Water 본문
1. Input
1) int[] height
- height[i] == i번째 위치의 벽의 높이
- 벽의 간격과 두께는 모두 1이다.
2. Output
1) 두 벽을 골라 물을 채울 때 가장 많이 채울 수 있는 물의 양을 반환
3. Constraint
1) n == height.length
2) 2 <= n <= 10^5
3) 0 <= height[i] <= 10^4
4. Example
Input: height = [1,8,6,2,5,4,8,3,7] -> Output: 49(=7*7)
설명: 빨간 벽을 골랐을 때가 가장 물이 많이 담긴다.
5. Code
class Solution {
public int maxArea(int[] height) {
int left = 0, right = height.length-1, max = 0;
while(left<right){
int v = (right-left)*Math.min(height[left],height[right]);
if(v>max) max = v;
if(height[left]<height[right]) left++;
else right--;
}
return max;
}
}
- 83%, 62%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 11651. 좌표 정렬하기 2 (0) | 2023.07.06 |
---|---|
[백준 온라인 저지] 11650. 좌표 정렬하기 (0) | 2023.07.06 |
[LeetCode/Medium] 1493. Longest Subarray of 1's After Deleting One Element (0) | 2023.07.06 |
[LeetCode/Medium] 3. Longest Substring Without Repeating Characters (0) | 2023.07.04 |
[LeetCode/Medium] 2. Add Two Numbers (0) | 2023.07.04 |