记录编号 122466 评测结果 AAAAAAAAAA
题目名称 [SDOI 2007] 兔子 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.008 s
提交时间 2014-09-23 20:06:03 内存使用 0.36 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <algorithm>
  6. #include <cstdlib>
  7. #include <map>
  8. #include <set>
  9. #include <list>
  10. #include <iterator>
  11. #include <ctime>
  12. #include <queue>
  13. #include <stack>
  14. #include <vector>
  15. #include <functional>
  16. #include <deque>
  17. #define For(i,j,k) for(int i=(j);i<=(k);i++)
  18. using namespace std;
  19. typedef long long LL;
  20. typedef unsigned int Uint;
  21. const int INF=0x7fffffff;
  22. const double eps=1e-6;
  23. using namespace std;
  24. //================struct declaration======================
  25. struct bign
  26. {
  27. int num[200];
  28. int len;
  29. bign ()
  30. {
  31. memset(this->num,0,sizeof(this->num));
  32. len=1;
  33. }
  34. bign (int x)
  35. {
  36. len=0;
  37. while (x!=0)
  38. {
  39. num[++len]=x%10000;
  40. x/=10000;
  41. }
  42. }
  43. bign operator +(const bign &rhs) const
  44. {
  45. bign res;
  46. int len=max(this->len,rhs.len);
  47. res.len=len;
  48. For(i,1,len)
  49. res.num[i]=num[i]+rhs.num[i];
  50. For(i,1,len)
  51. if (res.num[i]>=10000)
  52. {
  53. res.num[i+1]+=res.num[i]/10000;
  54. res.num[i]%=10000;
  55. }
  56. if (res.num[len+1]!=0)
  57. res.len++;
  58. return res;
  59. }
  60. void print()
  61. {
  62. printf("%d",num[len]);
  63. for(int i=len-1;i>0;i--)
  64. printf("%04d",num[i]);
  65. }
  66. };
  67. //================var declaration=-========================
  68. const int MAXN=110;
  69. bign f[MAXN];
  70. int m,d;
  71. //================function declaration====================
  72.  
  73. //================main code===============================
  74. int main()
  75. {
  76. string ProgrammeName="rabbit";
  77. string FloderName="COGS";
  78. freopen((ProgrammeName+".in").c_str(),"r",stdin);
  79. freopen((ProgrammeName+".out").c_str(),"w",stdout);
  80. #ifdef DEBUG
  81. clock_t Start_Time=clock();
  82. system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
  83. #endif
  84. scanf("%d%d",&m,&d);
  85. For(i,1,m)
  86. f[i]=f[i-1]+1;
  87. For(i,m+1,d+1)
  88. f[i]=f[i-1]+f[i-m];
  89. f[d+1].print();
  90. #ifdef DEBUG
  91. clock_t End_Time=clock();
  92. printf("\n\nTime Used :%.6lf Ms\n",double(Start_Time-End_Time)/(-CLOCKS_PER_SEC));
  93. #endif
  94. return 0;
  95. }
  96. //================function code===========================