您的位置 首页 系统

ACM座位调整标题的回答

座位调整题目描述:百度办公区里到处摆放着各种各样的零食。百度人力资源部的调研发现,员工如果可以在自己喜欢的美食旁边工作,工作效率会

座位调整

标题描绘:

百度作业区里处处摆放着各式各样的零食。百度人力资源部的调研发现,职工假如可以在自己喜爱的美食周围作业,作业效率会大大提高。因而,百度决议进行一次职工座位的大调整。

调整的办法如下:

1 . 首先将作业区依照各种零食的摆放分红 N 个不同的区域。(例如:可乐区,饼干区,牛奶区等等)。

2 . 每个职工对不同的零食区域有不同的喜爱程度(喜爱程度度的规模为 1 — 100 的整数, 喜爱程度越大表明该职工越期望被调整到相应的零食区域)。

3 . 因为每个零食区域可以包容的职工数量有限,人力资源部期望找到一个最优的调整计划令到总的喜爱程度最大。

数据输入:

榜首行包括两个整数 N , M ,( 1<=N , M<=300 )。别离表明 N 个区域和 M 个职工。 第二行是 N 个整数构成的数列 a ,其间 a[i] 表明第 i 个区域可以包容的职工数, (1<=a[i]<=M , a[1]+a[2]+..+a[N]=M) 。 紧接着是一个 M*N 的矩阵P , P ( i , j )表明第 i 个职工对第 j 个区域的喜爱度。 答案输出: 关于每个测试数据,输出可以到达的最大的喜爱程度。 输入样例

3 3

1 1 1

100 50 25

100 50 25

100 50 25

输出样例

175
staticconstintM=3;
staticconstintN=3;
staticintcapac[]={1,1,1};
vectoreraseRow(constvector&v,inti,intcurrentArea)
{
intcolSize=N-currentArea;
vectornewVec;
newVec.reserve(v.size()-colSize);
newVec.insert(newVec.begin(),v.begin(),v.begin()+i*colSize);
newVec.insert(newVec.end(),v.begin()+(i+1)*colSize,v.end());
returnnewVec;
}
vectoreraseCol(constvector&v,intcurrentArea)
{
vectornewVec;
for(inti=0;i!=v.size();++i)
{
if(i%(N-currentArea))
{
newVec.push_back(v[i]);
}
}
returnnewVec;
}

intgetMax(vectorv,intnumOfPeop,intnumOfCapac,intcurrentArea=0,intstart=0)
{
intsum=0,max=0;
intcurr=currentArea;
if(numOfPeop{
cerr<<"the numOfPeople is smaller than Capacity"<return-1;
}
elseif(numOfPeop==numOfCapac)
{
for(inti=0;i!=numOfCapac;++i)
{
max+=v[i];
}
}
else
{
vectornewVec;
if(numOfCapac==1)
{
for(inti=0;i<=numOfPeop-numOfCapac;++i)
{
sum=v[i*(N-curr)];
newVec=eraseRow(v,i,curr);
newVec=eraseCol(newVec,curr);
if(curr{
sum+=getMax(newVec,numOfPeop-1,capac[curr+1],curr+1);
}
max=(max>sum?max:sum);
}
}
else
{
if(numOfCapac<1)
{
cerr<<"numOfCapacity is smaller thanzero"<return-1;
}
for(inti=start;i!=numOfPeop-numOfCapac;++i)
{
sum=v[i*(N-curr)];
newVec=eraseRow(v,i,curr);
sum+=getMax(newVec,numOfPeop-1,numOfCapac-1,curr,i);
max=(max>sum?max:sum);
}
}
}
returnmax;
}
voidprintVec(constvector&v)
{
intdelim=1;
for(inti=0;i!=v.size();++i,++delim)
{
cout<if(!(delim%3))
{
cout<}
}
}
voidmain(intargc,char**argv)
{
ifstream ifs(“IntrestArea.txt”);
vectorv;
v.reserve(M*N);
inti;
while(ifs>>i)
{
v.push_back(i);
}
intmax=getMax(v,M,capac[0]);
cout<}
多堆集函数,才是最名贵的。。。。并不是要自己必定可以编写出来哟!!!多读读

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qianrushi/xitong/317658.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部