记录编号 254535 评测结果 AAAAAAAAAA
题目名称 [HNOI 1999] 快餐问题 最终得分 100
用户昵称 Gravatarliu_runda 是否通过 通过
代码语言 C++ 运行时间 0.776 s
提交时间 2016-04-25 14:50:02 内存使用 0.77 MiB
显示代码纯文本
  1. #include<cstdio>
  2. #include<cctype>
  3. #include<cstring>
  4. int read(){
  5. int x;char ch;
  6. while(ch=getchar(),!isdigit(ch));
  7. x=ch-'0';
  8. while(ch=getchar(),isdigit(ch))x=x*10+ch-'0';
  9. return x;
  10. }
  11. int f[12][102][102];
  12. int t[12];
  13. int min(int a,int b){
  14. return a<b?a:b;
  15. }
  16. int max(int a,int b){
  17. return a>b?a:b;
  18. }
  19. int sum,needa,needb,needc,costa,costb,costc,n,maxa,maxb,maxc;
  20. bool enough(int lsx,int a,int b){
  21. int tmp=f[lsx][a][b],rest=sum-tmp*costc-a*costa-b*costb>costa;
  22. if(tmp>maxc){
  23. if((a<maxa&&rest>costa)||(b<maxb&&rest>costb))return true;
  24. }
  25. return false;
  26. }
  27. int main(){
  28. freopen("meal.in","r",stdin);
  29. freopen("meal.out","w",stdout);
  30. sum=0;
  31. needa=read();needb=read();needc=read();
  32. costa=read();costb=read();costc=read();
  33. n=read();
  34. memset(f,-1,sizeof(f));
  35. for(int i=1;i<=n;++i){
  36. t[i]=read();
  37. sum+=t[i];
  38. }
  39. int tot=sum/(costa*needa+costb*needb+costc*needc);
  40. maxa=min(tot*needa,100);
  41. maxb=min(tot*needb,100);
  42. maxc=min(tot*needc,100);
  43. f[0][0][0]=0;
  44. for(int lsx=1;lsx<=n;++lsx){
  45. for(int proa=0;proa<=maxa;++proa){
  46. for(int prob=0;prob<=maxb;++prob){
  47. f[lsx][proa][prob]=f[lsx-1][proa][prob];
  48. if(enough(lsx,proa,prob))continue;
  49. int tmp;
  50. for(int guessa=proa;guessa>=0;guessa--){
  51. if(f[lsx][proa][prob]>=maxc)continue;
  52. for(int guessb=prob;guessb>=0;guessb--){
  53. tmp=t[lsx]-guessa*costa-guessb*costb;
  54. if(tmp<0)continue;
  55. if(f[lsx-1][proa-guessa][prob-guessb]!=-1)
  56. f[lsx][proa][prob]=max(f[lsx][proa][prob],f[lsx-1][proa-guessa][prob-guessb]+tmp/costc);
  57. }
  58. }
  59. }
  60. }
  61. }
  62. int ans=0;
  63. for(int proa=0;proa<=maxa;++proa){
  64. for(int prob=0;prob<=maxb;++prob){
  65. ans=max(ans,min(f[n][proa][prob],min(proa/needa,prob/needb)));
  66. }
  67. }
  68. printf("%d",ans);
  69. fclose(stdin);fclose(stdout);
  70. return 0;
  71. }
  72. /*
  73. 1 3 2
  74. 3 1 2
  75. 4
  76. 15 61 62 64
  77. */