poj 1006 生理周期

Posted 树的种子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 1006 生理周期相关的知识,希望对你有一定的参考价值。

题目链接:http://poj.org/problem?id=1006

题意:中文题。

中国剩余定理:

 1 #include <cstdio>
 2 #include <cmath>
 3 
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     int p,e,i,d;
 9     int Case=1;
10     int lcd = 21252;
11     while(scanf("%d%d%d%d",&p,&e,&i,&d),p!=-1)
12     {
13         int n = (5544*p+14421*e+1288*i)%lcd;
14         if(n<=d) n+=lcd;
15         printf("Case %d: the next triple peak occurs in %d days.\\n",Case,n-d);
16         Case++;
17     }
18     return 0;
19 }
View Code

 

以上是关于poj 1006 生理周期的主要内容,如果未能解决你的问题,请参考以下文章

生理周期,POJ(1006)

[Poj1006]生理周期 (中国剩余定理)

生理周期POJ 1006

POJ 1006 - 生理周期 题解

poj1006生理周期(中国剩余定理)

POJ1006 生理周期