博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu2187 悼念512汶川大地震遇难同胞——老人是真饿了
阅读量:5219 次
发布时间:2019-06-14

本文共 1045 字,大约阅读时间需要 3 分钟。

直接排序,捡便宜的买!

View Code
1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 struct node 7 { 8 int p; 9 int h;10 };11 struct node mi[1001];12 int cmp(const void *a,const void *b)13 {14 return (*(node*)a).p>=(*(node*)b).p?1:-1;15 }16 int main()17 {18 int c,n,i,j,m;19 float sum;20 scanf("%d",&c);21 while(c--)22 {23 sum=0.0;24 scanf("%d%d",&n,&m);25 for(i=0;i
=mi[i].p*mi[i].h)33 {34 sum=sum+mi[i].h;35 n=n-mi[i].p*mi[i].h;36 }37 else38 {39 sum=sum+n*1.0/mi[i].p;40 break;41 }42 43 }44 printf("%.2f\n",sum);45 }46 return 0;47 }

ps:貌似在poj上也有这么一个问题,当时错了,貌似是给的不是大米而是给的一个没有单价的物体,之后又给了单价!很多人都坑那了!!!!

转载于:https://www.cnblogs.com/ACshasow/archive/2012/10/06/2713257.html

你可能感兴趣的文章
常用到的多种锁(随时可能修改)
查看>>
用UL标签+CSS实现的柱状图
查看>>
mfc Edit控件属性
查看>>
Linq使用Join/在Razor中两次反射取属性值
查看>>
[Linux]PHP-FPM与NGINX的两种通讯方式
查看>>
Java实现二分查找
查看>>
优秀员工一定要升职吗
查看>>
[LintCode] 462 Total Occurrence of Target
查看>>
springboot---redis缓存的使用
查看>>
架构图-模型
查看>>
sql常见面试题
查看>>
jQuery总结第一天
查看>>
Java -- Swing 组件使用
查看>>
Software--Architecture--DesignPattern IoC, Factory Method, Source Locator
查看>>
poj1936---subsequence(判断子串)
查看>>
黑马程序员_Java基础枚举类型
查看>>
[ python ] 练习作业 - 2
查看>>
一位90后程序员的自述:如何从年薪3w到30w!
查看>>
在.net core上使用Entity FramWork(Db first)
查看>>
System.Net.WebException: 无法显示错误消息,原因是无法找到包含此错误消息的可选资源程序集...
查看>>