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
- OS
- BOJ
- 10026번
- 에러핸들링
- 열혈 tcp/ip 프로그래밍
- 우아한 테크 세미나
- n타일링2
- 스프링 핵심 원리
- Operating System.
- 2475번
- C++
- 윤성우 저자
- 스프링 입문
- C#
- inflearn
- 열혈 TCP/IP 소켓 프로그래밍
- 우아한레디스
- 이펙티브코틀린
- Spring
- Four Squares
- 토마토
- Operating System
- redis
- Window-Via-c/c++
- 제프리리처
- 운영체제
- 김영한
- TCP/IP
- FIFO paging
- HTTP
Archives
- Today
- Total
나의 브을로오그으
[c++] 2805번 : 나무 자르기 본문
https://www.acmicpc.net/problem/2805
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int ASC(int n, int m)
{
return n < m;
}
long long getSumOfCutTrees(vector<int>& trees, int cut)
{
long long sum = 0;
for (size_t i = 0; i < trees.size(); ++i)
{
sum += (long long)cut >= (long long)trees[i] ? 0LL : (long long)trees[i] - (long long)cut;
}
return sum;
}
long long getCutOfTreeMaxLength(vector<int>& trees, int endLen, int wantLen)
{
int startLen = 1;
int curLen = 0;
long long sumLen = 0LL;
while (startLen < endLen)
{
curLen = startLen + (endLen - startLen) / 2;
sumLen = getSumOfCutTrees(trees, curLen);
if (sumLen >= (long long)wantLen)
{
startLen = curLen + 1;
}
else
{
endLen = curLen;
}
}
return startLen - 1;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
vector<int> trees;
int tree = 0;
int cutLen = 0;
int endLen = 0;
int N = 0;
int M = 0;
cin >> N >> M;
trees.reserve(N);
for (int i = 0; i < N; ++i)
{
cin >> tree;
endLen = endLen < tree ? tree : endLen;
trees.push_back(tree);
}
sort(trees.begin(), trees.end(), ASC);
cutLen = getCutOfTreeMaxLength(trees, endLen, M);
cout << cutLen << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 2869번 : 달팽이는 올라가고 싶다 (0) | 2022.04.30 |
---|---|
[c++] 2839번 : 설탕 배달 (0) | 2022.04.29 |
[c++] 2798번 : 블랙잭 (0) | 2022.04.28 |
[c++] 2775번 : 부녀 회장이 될테야 (0) | 2022.04.28 |
[c++] 2751번 : 수 정렬하기 2 (0) | 2022.04.27 |