记录编号 185308 评测结果 AAAAAAAAAA
题目名称 多米诺骨牌 最终得分 100
用户昵称 Gravatarmikumikumi 是否通过 通过
代码语言 C++ 运行时间 0.383 s
提交时间 2015-09-05 23:24:02 内存使用 46.94 MiB
显示代码纯文本
  1. #include<cstdio>
  2. #include<deque>
  3. #include<cmath>
  4. #include<algorithm>
  5. #include<iostream>
  6. #include<cstring>
  7. #include<iomanip>
  8. using namespace std;
  9. const int INF=0x7fffffff/2,detla=6000;
  10. int N,d[1010]={0};
  11. int f[1010][12100]={0};
  12. deque<int> Q;
  13. void work()
  14. {
  15. Q.push_back(0);
  16. f[0][detla]=0;
  17. for(int i=1;i<=N;i++)
  18. {
  19. int M=Q.size();
  20. for(int x=-6*i;x<=6*i;x++)
  21. {
  22. if(f[i-1][x+detla]==INF) continue;
  23. f[i][x+detla+d[i]]=min(f[i][x+detla+d[i]],f[i-1][x+detla]+1);
  24. f[i][x+detla-d[i]]=min(f[i][x+detla-d[i]],f[i-1][x+detla]);
  25. //cout<<i<<" "<<x<<" "<<x+d[i]<<" "<<f[i][x+detla+d[i]]<<endl;
  26. //cout<<i<<" "<<x<<" "<<x-d[i]<<" "<<f[i][x+detla-d[i]]<<endl;
  27. }
  28. }
  29. int now=INF,ans=0;
  30. for(int j=-6*N;j<=6*N;j++)
  31. {
  32. if(f[N][j+detla]!=INF&&abs(j)<now)
  33. {
  34. now=abs(j);
  35. ans=f[N][j+detla];
  36. }
  37. }
  38. printf("%d\n",ans);
  39. }
  40. int main()
  41. {
  42. freopen("dom.in","r",stdin);
  43. freopen("dom.out","w",stdout);
  44. scanf("%d",&N);
  45. int a,b;
  46. for(int i=1;i<=N;i++)
  47. {
  48. scanf("%d%d",&a,&b);
  49. d[i]=a-b;
  50. }
  51. for(int i=0;i<=N;i++) for(int j=-6*N;j<=6*N;j++) f[i][j+detla]=INF;
  52. work();
  53. return 0;
  54. }