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 | 31 |
Tags
- dp
- 게이트웨이
- Zuul
- Java
- 유레카
- Gradle
- 도커
- 다익스트라
- docker-compose
- spring cloud
- 메모이제이션
- 서비스 디스커버리
- Logback
- 트리
- 주울
- 스프링 시큐리티
- 이분 탐색
- 구현
- ZuulFilter
- 비트마스킹
- spring boot
- 이분 매칭
- Spring Cloud Config
- 완전 탐색
- 스택
- 백트래킹
- 플로이드 와샬
- BFS
- 달팽이
- 구간 트리
Archives
- Today
- Total
Hello, Freakin world!
[백준 2805번] 나무 자르기 본문
문제 풀이
자를 수 있는 나무의 높이는 1 ~ 최대 나무 길이(L) 입니다.
이 범위에서 '높이의 중간값을 지정해 잘라가면서 얻는 나무 토막의 길이'를 이용해 이분탐색을 시행하면 답을 얻을 수 있습니다.
...
/*
백준 2805번 - 나무 자르기
https://www.acmicpc.net/problem/2805
*/
public class Main {
static int n;
static long m;
static int[] trees;
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// BufferedReader br = new BufferedReader(new FileReader("testcase.txt"));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Long.parseLong(st.nextToken());
trees = new int[n];
st = new StringTokenizer(br.readLine());
int i = 0;
while(st.hasMoreTokens()) {
trees[i] = Integer.parseInt(st.nextToken());
i++;
}
Arrays.sort(trees);
// System.out.println(Arrays.toString(trees));
int ret = solve(trees);
System.out.println(ret);
}
private static int solve(int[] trees) {
return getCuttingHeight(0, trees[trees.length-1], m);
}
public static int getCuttingHeight(int low, int high, long needWoods){
int mid = (low+high)/2;
long slicedWoods = slice(mid);
// System.out.format("low : %d, high : %d, mid : %d, sliced : %d, target : %d\n", low, high, mid, slicedWoods, needWoods);
if(low == high) {
if(slicedWoods < needWoods) return low-1;
return low;
}
if(slicedWoods > needWoods) {
return getCuttingHeight(mid+1, high, needWoods);
} else if(slicedWoods == needWoods) {
return mid;
} else {
return getCuttingHeight(low, mid, needWoods);
}
}
private static long slice(int h) {
long sum = 0;
for (int i = n-1; i >= 0; i--) {
if(trees[i] > h) sum += trees[i] - h;
else break;
}
return sum;
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 3190번] 뱀 (0) | 2020.09.07 |
---|---|
[백준 10816번] 숫자 카드 2 - Upper Bound, Lower Bound (0) | 2020.09.07 |
[백준 2446번] 별찍기 9 (0) | 2020.09.04 |
[백준 11376번] 열혈강호2 (0) | 2020.09.03 |
[백준 11375번] 열혈 강호 (0) | 2020.09.03 |
Comments