记录编号 187752 评测结果 AAWTTTTTTT
题目名称 [USACO Mar]提高速度 最终得分 20
用户昵称 GravatarHoliye 是否通过 未通过
代码语言 C++ 运行时间 7.517 s
提交时间 2015-09-20 18:07:51 内存使用 0.33 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <algorithm>
  6. int z,l,n,c=1;
  7. double d,o;
  8. const int maxn=1000+2;
  9. struct node
  10. {
  11. int m,f;
  12. };
  13. node b[maxn];
  14. char a[maxn],e[maxn];
  15. int j=1,s;
  16. char ss();
  17. double max1;
  18. using namespace std;
  19. int main()
  20. {
  21. //freopen("test.in","r",stdin);
  22. //freopen("test.out","w",stdout);
  23. freopen("sboost.in","r",stdin);
  24. freopen("sboost.out","w",stdout);
  25. cin>>l>>z>>n;
  26. d=l*1.0/z;
  27. max1=d; o=d;
  28. for(int i=1;i<=n;i++)
  29. {
  30. j*=2;
  31. }
  32. for(int i=1;i<=n;i++)
  33. {
  34. a[i]='0';
  35. }
  36. for(int i=1;i<=n;i++)
  37. {
  38. cin>>b[i].f>>b[i].m;
  39. }
  40. ss();
  41. if(max1<=o)
  42. {
  43. cout<<"NONE"<<endl;
  44. }
  45. else
  46. {
  47. for(int i=1;i<=n;i++)
  48. {
  49. if(e[i]=='1')
  50. cout<<i<<endl;
  51. }
  52. }
  53. return 0;
  54. }
  55. char ss()
  56. {
  57. for(int j=c;j<=n;j++)
  58. {
  59. a[j]='1';
  60. int h1=z,h2=l;
  61. for(int i=1;i<=n;i++)
  62. {
  63. if(a[i]=='1')
  64. {
  65. h1+=b[i].m;
  66. h2+=b[i].f;
  67. d=h2*1.0/h1;
  68. if(d>max1)
  69. {
  70. max1=d;
  71. for(int k=1;k<=n;k++)
  72. {
  73. e[k]=a[k];
  74. }
  75. }
  76. }
  77. }
  78. c++;
  79. ss();
  80. c--;
  81. a[j]='0';
  82. }
  83. }