标签:
圣诞节来临了,在城市A中圣诞老人准备分发糖果,现在有多箱不同的糖果,每箱糖果有自己的价值和重量,每箱糖果都可以拆分成任意散装组合带走。圣诞老人的驯鹿最多只能承受一定重量的糖果,请问圣诞老人最多能带走多大价值的糖果。
4 15 100 4 412 8 266 7 591 2
1193.0
#include<stdio.h> #include<iostream> using namespace std; int main() { int times; int weight; int UseNu=0; double AllValue=0; int AllWeight=0; cin>>times>>weight; UseNu=weight; struct MyGift{ int Value; int Weit; double perVal; }; struct MyGift Gift[times]; struct MyGift Temp={0,0,0 }; for(int i=0;i<times;i++) { cin>>Gift[i].Value>>Gift[i].Weit; Gift[i].perVal=(double)(Gift[i].Value)/(double)(Gift[i].Weit); AllWeight+=Gift[i].Weit; AllValue+=Gift[i].Value; } for(int j=0;j<times;j++) { for(int h=1;h<times;h++) { if(Gift[h-1].perVal<Gift[h].perVal) { Temp=Gift[h-1]; Gift[h-1]=Gift[h]; Gift[h]=Temp; } } } if(AllWeight<=weight) { printf("%0.1f\n",(double)(AllValue)); return 0; } AllValue=0; for(int z=0;z<times;z++) { if(Gift[z].Weit<=UseNu) { AllValue+=Gift[z].Value; UseNu-=Gift[z].Weit; } else{ AllValue+=Gift[z].perVal*UseNu; printf("%0.1f\n",AllValue); return 0; } } return 0; }
OpenJudge百炼习题解答(C++)--题4110:圣诞老人的礼物-Santa Clau’s Gifts
标签:
原文地址:http://blog.csdn.net/u014581901/article/details/50716221