在此对 曾经 努力参加 救援的人 致以深深的敬意 .

这一道题 挺简单的 就是简单的  结构体+贪心    而已

不过 用英文 注释  是一个 很大的 进步 ,  以后 要习惯

http://acm.hdu.edu.cn/showproblem.php?pid=2187

对于幸存的灾民来说,最急待解决的显然是温饱问题,救灾部队一边在组织人员全力打通交通,一边在组织采购粮食。现在假设下拨了一定数量的救灾经费要去市场采购大米(散装)。如果市场有m种大米,各种大米的单价和重量已知,请问,为了满足更多灾民的需求,最多能采购多少重量的大米呢?

输入:
输入数据首先包含一个正整数C,表示有C组测试用例,每组测试用例的第一行是两个整数n和m(0<n<=1000,0<m<=1000),分别表示经费的金额和大米的种类,然后是m行数据,每行包含2个整数p和h(1<=p<=25,1<=h<=100),分别表示单价和对应大米的重量。

输出:

对于每组测试数据,请输出能够购买大米的最多重量(你可以假设经费买不光所有的大米)。
每个实例的输出占一行,保留2位小数。

Sample Input
1 7 2 3 3 4 4
 
Sample Output
2.33
下面附上 水水的 代码

 #include<stdio.h>
#include<algorithm>
using namespace std;
struct rice
{
int p,h; // The price and types of rice .
};
bool cmp(rice a,rice b)
{
return a.p<b.p;
}
int main()
{
rice a[];
int i,m,t;
double n,sum;
scanf("%d",&t);
while(t--)
{
scanf("%lf%d",&n,&m); // The total amount and types of rice .
for(sum=i=;i<m;i++)
{
scanf("%d%d",&a[i].p,&a[i].h);
}
sort(a,a+m,cmp); // According to the price of the target were sorted in ascending order.
for(i=;i<m;i++)
{
if(a[i].p*a[i].h<=n) //First determine whether this kind of buying meters
{
sum+=a[i].h; // if we can do it
n-=a[i].p*a[i].h;
}
else // if we fail to do it
{
n/=a[i].p; //With the rest of the money divided by the price .
sum+=n;
break;
}
}
printf("%.2lf\n",sum);
}
return ;
}
05-11 16:25