码迷,mamicode.com
首页 > 其他好文 > 详细

贪心/poj 1017 Packets

时间:2014-12-11 23:55:18      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   div   log   bs   ef   

 1 #include<cstdio>
 2 #include<cstring>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     int a1,a2,a3,a4,a5,a6;
 8     scanf("%d%d%d%d%d%d",&a1,&a2,&a3,&a4,&a5,&a6);
 9     while ((a1+a2+a3+a4+a5+a6)!=0)
10     {
11         int ans=a6+a5+a4+(a3+3)/4;
12 
13         int temp2=0;
14         if (a3%4==0) temp2=0;
15         else if (a3%4==1) temp2=5;
16         else if (a3%4==2) temp2=3;
17         else if (a3%4==3) temp2=1;
18 
19         int left2=5*a4+temp2;
20         if (a2>left2) ans+=(a2-left2+8)/9;
21 
22         int left1=36*ans-36*a6-25*a5-16*a4-9*a3-4*a2;
23         if (a1>left1) ans+=(a1-left1+35)/36;
24 
25         printf("%d\n",ans);
26 
27         scanf("%d%d%d%d%d%d",&a1,&a2,&a3,&a4,&a5,&a6);
28     }
29     return 0;
30 }

 

贪心/poj 1017 Packets

标签:style   blog   io   color   sp   div   log   bs   ef   

原文地址:http://www.cnblogs.com/NicoleLam/p/4158631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!