diff --git a/suhyun113/README.md b/suhyun113/README.md index 59a2688..ffc876a 100644 --- a/suhyun113/README.md +++ b/suhyun113/README.md @@ -12,4 +12,5 @@ | 8차시 | 2024.05.14 | 수학 | [어린 왕자](https://www.acmicpc.net/problem/1004) | [#32](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/32) | | 9차시 | 2024.05.28 | 다익스트라 | [최소비용 구하기](https://www.acmicpc.net/problem/1916) | [#33](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/33) | | 10차시 | 2024.07.13 | 플로이드-워셜 | [플로이드](https://www.acmicpc.net/problem/11404) | [#36](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/36) | -| 11차시 | 2024.07.16 | BFS | [연구소](https://www.acmicpc.net/problem/14502) | [#39](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/39) | \ No newline at end of file +| 11차시 | 2024.07.16 | BFS | [연구소](https://www.acmicpc.net/problem/14502) | [#39](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/39) | +| 12차시 | 2024.07.24 | 이분 탐색 | [나무 자르기](https://www.acmicpc.net/problem/2805) | [#42](https://github.com/AlgoLeadMe/AlgoLeadMe-10/pull/42) | \ No newline at end of file diff --git "a/suhyun113/\354\235\264\353\266\204 \355\203\220\354\203\211/12-suhyun113.cpp" "b/suhyun113/\354\235\264\353\266\204 \355\203\220\354\203\211/12-suhyun113.cpp" new file mode 100644 index 0000000..848d4ec --- /dev/null +++ "b/suhyun113/\354\235\264\353\266\204 \355\203\220\354\203\211/12-suhyun113.cpp" @@ -0,0 +1,51 @@ +// 2805 : 나무 자르기 + +#include +#include +using namespace std; + +// 절단기에 지정한 나무의 높이 H로 나무를 자름 +// H보다 크면 자르기(작으면, 값이 0 또는 음수로 나옴) +bool can_cut(vector& trees, int H, int M) { + long long total = 0; // 자른 나무들의 총 합 + for (int tree : trees) { + if (tree > H) { + total += (tree - H); + } + } + return total >= M; // 총 합이 M 보다는 커야 함 +} + +int binary_search(vector& trees, int M) { + int lo = 0; + int hi = 1000000000; + + while (lo + 1 < hi) { + int mid = (lo + hi) / 2; // 중앙값 저장 + + if (can_cut(trees, mid, M)) { // 절단기 높이 변경 + lo = mid; // 현재의 절단기 높이를 가능한 최소 높이로 저장(중앙값 더 커짐) + } + else { + hi = mid; // 현재 절단기 높이 안되면, 더 낮은 높이로 확인 + } + } + + return lo; // canCut을 만족해야 하므로 +} + +int main() { + int N, M; + cin >> N >> M; + + // N개의 나무들의 길이 목록 만들기 + vector trees(N); + for (int i = 0; i < N; i++) { + cin >> trees[i]; + } + + int result = binary_search(trees, M); + cout << result << endl; + + return 0; +} \ No newline at end of file