日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ2392

發(fā)布時(shí)間:2023/12/10 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ2392 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題意:奶牛們要用K個(gè)不同類型的石頭建太空電梯.每一種石頭的高度為Hi,數(shù)量為Ci,且不能放在高于Ai的地方,求最高能建多高的太空電梯.

分析:多重背包,數(shù)組標(biāo)記.顯然將ai小的放在下面會(huì)更優(yōu).所以先排序.

code:

const maxh=41000; var cnt:array[0..maxh] of longint;h,a,c:array[0..401] of longint;f:array[0..maxh] of boolean;n,i,j,k,tmp,ans:longint;procedure swap(var a,b:longint);var tmp:longint;begintmp:=a; a:=b; b:=tmp;end;procedure sort(l,r:longint);var i,j,mid:longint;begini:=l; j:=r;mid:=a[(l+r)>>1];while i<=j dobeginwhile a[i]<mid do inc(i);while a[j]>mid do dec(j);if i<=j thenbeginswap(h[i],h[j]);swap(a[i],a[j]);swap(c[i],c[j]);inc(i); dec(j);end;end;if i<r then sort(i,r);if j>l then sort(l,j);end;beginreadln(n);for i:=1 to n do readln(h[i],a[i],c[i]);sort(1,n);f[0]:=true;for i:=1 to n dobeginfillchar(cnt,sizeof(cnt),0);for j:=0 to a[i] doif (f[j]=true)and(not f[j+h[i]])and(j+h[i]<=a[i])and(cnt[j]<c[i]) thenbeginf[j+h[i]]:=true;cnt[j+h[i]]:=cnt[j]+1;end;end;for i:=maxh downto 0 do if f[i] then break;writeln(i);end.

轉(zhuǎn)載于:https://www.cnblogs.com/exponent/archive/2011/08/12/2136501.html

總結(jié)

以上是生活随笔為你收集整理的POJ2392的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。