比赛 15级练手赛 评测结果 AAAAAAAAAA
题目名称 开心的金明 最终得分 100
用户昵称 梦那边的美好ET 运行时间 0.028 s
代码语言 C++ 内存使用 3.27 MiB
提交时间 2018-08-02 19:39:39
显示代码纯文本
  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cmath>
  4. #include<cctype>
  5. #include<cstring>
  6. #include<algorithm>
  7. using namespace std;
  8. int m,n;
  9. int f[30001]={0},w[26]={0},a[26]={0};
  10. int max(int a,int b)
  11. {
  12. if(a>b)
  13. {
  14. return a;
  15. }
  16. else
  17. {
  18. return b;
  19. }
  20. }
  21. int main()
  22. {
  23. freopen("happy.in","r",stdin);
  24. freopen("happy.out","w",stdout);
  25. cin>>m>>n;
  26. for(int i=1;i<=n;i++)
  27. {
  28. cin>>w[i]>>a[i];
  29. }
  30. for(int i=1;i<=n;i++)
  31. {
  32. for(int j=m;j>=w[i];j--)
  33. {
  34. f[j]=max(f[j-w[i]]+w[i]*a[i],f[j]);
  35. }
  36. }
  37. cout<<f[m];
  38. return 0;
  39. }
  40.  
  41.