首页 > 其他 > 详细

贪心-最优装载问题

时间:2014-04-16 12:14:07      阅读:625      评论:0      收藏:0      [点我收藏+]
//最优装载
#include<iostream>
using namespace std;
template <class Type>
void loading(int x[],Type w[],Type c,int n)
{
   int *t=new int [n+1];
   sort(w,t,n);
   for(int i=1;i<=n;i++)
   x[i]=0;
   for(int i=1;i<=n&&w[t[i]]<=c;i++)
   {
      x[t[i]]=1;
 c-=w[t[i]];
   }
   for(int i=1;i<=n;i++)
   cout<<x[i]<<" "<<endl;
}
int main()
{
   int x[100];   //x[i]=0,不装入;x[i]=1,装入
   int w[100];//重量
   int c;//承载量
   int n;
   while(cin>>n)
   {
      cin>>c;
      for(int i=1;i<=n;i++)
      cin>>w[i];
 loading(x,w,c,n);
   }
}

贪心-最优装载问题,布布扣,bubuko.com

贪心-最优装载问题

原文:http://blog.csdn.net/u013240812/article/details/23780889

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!