BOJ 2805 : 나무 자르기 - C++
나무 자르기
코드
[ 시간초과 코드 ]
#include <cstdio>
#include <vector>
#include <queue>
#include <iostream>
#include <cmath>
#include <algorithm>
#define ll long long
using namespace std;
ll N,M, ans;
ll MAX;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// N=10^6, M=10^9
cin >> N >> M;
priority_queue<int> pq;
for(int i=0;i<N;i++)
{
int a;
cin >> a;
pq.push(a);
}
ll co=0;
ll H=pq.top();
while(true)
{
if(pq.empty()){
ans += co;
H--;
}else if(pq.top() < H){
ll n = (co)*(H-pq.top());
if(ans + n > M){
ans += co;
H--;
}else{
ans += n;
H = pq.top();
}
}
else{
pq.pop();
co++;
}
if(ans >= M) break;
}
cout << H;
}
[ 이분탐색 코드 ]
#include <cstdio>
#include <vector>
#include <queue>
#include <iostream>
#include <cmath>
#include <algorithm>
#define ll long long
using namespace std;
ll N,M,high;
vector<ll> arr(1000002);
/* 이진탐색 - O(logN) */
void bs(vector<ll>& arr, ll st, ll en){
ll ans=0;
while(st <= en)
{
ll tot=0;
ll mid = (st + en)/2;
for(auto a : arr)
if(a > mid)
tot += a-mid;
if(tot < M)
en = mid-1;
else{
ans = mid;
st = mid + 1;
}
}
cout << ans;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> N >> M;
for(int i=0;i<N;i++)
{
cin >> arr[i];
high=max(high,arr[i]);
}
bs(arr,0,high);
return 0;
}
- 로직
나무
의 최대 길이
를 구한다
이분탐색
으로 최적의 나무 높이
를 구한다
- 주의
합
을 구하는 tot변수
는 반드시 long long
혹은 그 이상이어야 한다
Author And Source
이 문제에 관하여(BOJ 2805 : 나무 자르기 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@neity16/BOJ-2805-나무-자르기-C
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
[ 시간초과 코드 ]
#include <cstdio> #include <vector> #include <queue> #include <iostream> #include <cmath> #include <algorithm> #define ll long long using namespace std; ll N,M, ans; ll MAX; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); // N=10^6, M=10^9 cin >> N >> M; priority_queue<int> pq; for(int i=0;i<N;i++) { int a; cin >> a; pq.push(a); } ll co=0; ll H=pq.top(); while(true) { if(pq.empty()){ ans += co; H--; }else if(pq.top() < H){ ll n = (co)*(H-pq.top()); if(ans + n > M){ ans += co; H--; }else{ ans += n; H = pq.top(); } } else{ pq.pop(); co++; } if(ans >= M) break; } cout << H; }
[ 이분탐색 코드 ]
#include <cstdio> #include <vector> #include <queue> #include <iostream> #include <cmath> #include <algorithm> #define ll long long using namespace std; ll N,M,high; vector<ll> arr(1000002); /* 이진탐색 - O(logN) */ void bs(vector<ll>& arr, ll st, ll en){ ll ans=0; while(st <= en) { ll tot=0; ll mid = (st + en)/2; for(auto a : arr) if(a > mid) tot += a-mid; if(tot < M) en = mid-1; else{ ans = mid; st = mid + 1; } } cout << ans; } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N >> M; for(int i=0;i<N;i++) { cin >> arr[i]; high=max(high,arr[i]); } bs(arr,0,high); return 0; }
- 로직
나무
의최대 길이
를 구한다이분탐색
으로최적의 나무 높이
를 구한다
- 주의
합
을 구하는tot변수
는 반드시long long
혹은 그 이상이어야 한다
Author And Source
이 문제에 관하여(BOJ 2805 : 나무 자르기 - C++), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@neity16/BOJ-2805-나무-자르기-C저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)