I'm trying to solve a problem which consists of finding minimum cost.The problem can be stated as: Given n buildings and for each building its height and cost is given.Now task is to find minimum cost so that all the buildings become equal to same height.Each building can be considered as a vertical pile of bricks where each brick can be added or removed with the cost associated with that building.
For example: Say there are n=3 buildings with heights of 1,2,3 and cost 10,100,1000 respectively.
Here, minimum cost will be equal to 120.
Here is the link to the problem:
http://www.spoj.pl/problems/KOPC12A/
An obvious answer will be to find the cost associated with each of the heights for all the buildings and then give as output the minimum cost from them.This is O(n^2).
In search for a better solution I tried finding the height with minimum value of ratio of height/cost.Then all the buildings must be equal to this height and calculate the cost and give as output.But this is giving me wrong answer. Here is my implementation:
Based on the below answers I have updated my code using weighted average but still not working.It's giving me wrong answer.
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
using namespace std;
long long fun(int h[],int c[],int optimal_h,int n){
long long res=0;
for(int i=0;i<n;i++){
res += (abs(h[i]-optimal_h))*c[i];
}
return res;
}
int main()
{
int t;
cin>>t;
for(int w=0;w<t;w++){
int n;
cin>>n;
int h[n];
int c[n];
int a[n];
int hh[n];
for(int i=0;i<n;i++){
cin>>h[i];
hh[i]=h[i];
}
sort(hh,hh+n);
for(int i=0;i<n;i++)
cin>>c[i];
long long w_sum=0;
long long cost=0;
for(int i=0;i<n;i++){
w_sum += h[i]*c[i];
cost += c[i];
}
int optimal_h;
if(cost!=0){
optimal_h=(int)((double)w_sum/cost + 0.5);
if(!binary_search(hh,hh+n,optimal_h)){
int idx=lower_bound(hh,hh+n,optimal_h)-hh;
int optimal_h1=hh[idx];
int optimal_h2=hh[idx-1];
long long res1=fun(h,c,optimal_h1,n);
long long res2=fun(h,c,optimal_h2,n);
if(res1<res2)
cout<<res1<<"\n";
else
cout<<res2<<"\n";
}
else{
long long res=fun(h,c,optimal_h,n);
cout<<res<<"\n";
}
}
else
cout<<"0\n";
}
return 0;
}
Any idea how to solve this ?
int h[n];; preferstd::vector<int> h(n);. – Robᵩ Mar 20 '12 at 17:13sum(abs(h[i] - x) * c[i]). See en.wikipedia.org/wiki/Least_absolute_deviations – Ferdinand Beyer Mar 20 '12 at 17:21