比赛 20110725 评测结果 AAATTTTTTT
题目名称 失落的神庙 最终得分 30
用户昵称 201101 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-07-25 10:55:29
显示代码纯文本
  1. #include <fstream>
  2. using namespace std;
  3. const int MAXINT=15000000;
  4. int tail=0,head=1,counthead=1,downlevel=0;
  5. unsigned long long n,f[15000001]={1,1};
  6. int main(void)
  7. {
  8. ifstream input("losttemple.in");
  9. ofstream output("losttemple.out");
  10. input>>n;
  11. while (n/2>head+downlevel*MAXINT)
  12. {
  13. head++;
  14. counthead++;
  15. if (head>MAXINT)
  16. {
  17. downlevel++;
  18. head=0;
  19. }
  20. f[head]=f[((head+downlevel*MAXINT)/2)%MAXINT]+f[((head+downlevel*MAXINT)/3)%MAXINT]+f[((head+downlevel*MAXINT)/5)%MAXINT]+f[((head+downlevel*MAXINT)/7)%MAXINT];
  21. if (counthead==7)
  22. {
  23. tail++;
  24. counthead=0;
  25. if (tail>MAXINT)
  26. tail=0;
  27. }
  28. }
  29. if (n>=2)
  30. output<<f[(n/2)%MAXINT]+f[(n/3)%MAXINT]+f[(n/5)%MAXINT]+f[(n/7)%MAXINT]<<endl;
  31. else
  32. output<<"1\n";
  33. input.close();
  34. output.close();
  35. return(0);
  36. }