码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1006 Biorhythms

时间:2018-01-29 22:39:32      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:time   star   ==   blog   with   end   script   xtend   mos   

Biorhythms
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 141553   Accepted: 45485

Description

Some people believe that there are three cycles in a person‘s life that start the day he or she is born. These three cycles are the physical, emotional, and intellectual cycles, and they have periods of lengths 23, 28, and 33 days, respectively. There is one peak in each period of a cycle. At the peak of a cycle, a person performs at his or her best in the corresponding field (physical, emotional or mental). For example, if it is the mental curve, thought processes will be sharper and concentration will be easier. 
Since the three cycles have different periods, the peaks of the three cycles generally occur at different times. We would like to determine when a triple peak occurs (the peaks of all three cycles occur in the same day) for any person. For each cycle, you will be given the number of days from the beginning of the current year at which one of its peaks (not necessarily the first) occurs. You will also be given a date expressed as the number of days from the beginning of the current year. You task is to determine the number of days from the given date to the next triple peak. The given date is not counted. For example, if the given date is 10 and the next triple peak occurs on day 12, the answer is 2, not 3. If a triple peak occurs on the given date, you should give the number of days to the next occurrence of a triple peak. 

Input

You will be given a number of cases. The input for each case consists of one line of four integers p, e, i, and d. The values p, e, and i are the number of days from the beginning of the current year at which the physical, emotional, and intellectual cycles peak, respectively. The value d is the given date and may be smaller than any of p, e, or i. All values are non-negative and at most 365, and you may assume that a triple peak will occur within 21252 days of the given date. The end of input is indicated by a line in which p = e = i = d = -1.

Output

For each test case, print the case number followed by a message indicating the number of days to the next triple peak, in the form: 

Case 1: the next triple peak occurs in 1234 days. 

Use the plural form ``days‘‘ even if the answer is 1.

Sample Input

0 0 0 0
0 0 0 100
5 20 34 325
4 5 6 7
283 102 23 320
203 301 203 40
-1 -1 -1 -1

Sample Output

Case 1: the next triple peak occurs in 21252 days.
Case 2: the next triple peak occurs in 21152 days.
Case 3: the next triple peak occurs in 19575 days.
Case 4: the next triple peak occurs in 16994 days.
Case 5: the next triple peak occurs in 8910 days.
Case 6: the next triple peak occurs in 10789 days.

Source

 

 1 #include<iostream>
 2 using namespace std;
 3 int a[4],m[4];
 4 void extendEuclid(int a,int b,int &x,int &y)
 5 {
 6     if(b == 0)
 7     {
 8         x=1;y=0;return;
 9     }
10     extendEuclid(b,a%b,x,y);
11     int tmp = x;
12     x = y;
13     y = tmp - (a/b)*y;
14 }
15 int CRT(int a[],int m[],int n)
16 {
17     int ans = 0,M = 1;
18     for(int i=1;i<=n;i++)
19         M *= m[i];
20     for(int i=1;i<=n;i++)
21     {
22         int x,y;
23         int Mi = M/m[i];
24         extendEuclid(Mi,m[i],x,y);//求逆元,x为逆元
25         ans = (ans + Mi*x*a[i])%M;
26     }
27     if(ans < 0) ans+=M;
28     return ans;
29 }
30 int main()
31 {
32     int p,e,i,d,t = 1;
33     cin>>p>>e>>i>>d;
34     //p表示体力,e表示情感,i表示智力。d表示给定时间
35     while(p != -1)
36     {
37         a[1] = p;a[2] = e;a[3] = i;
38         m[1] = 23;m[2] = 28;m[3] = 33;
39         int ans = CRT(a,m,3);
40         if(ans <= d)
41             ans += 21252;//lcm(23,28,33)
42         cout<<"Case "<<t++<<": the next triple peak occurs in "<<ans - d<<" days."<<endl;
43         cin>>p>>e>>i>>d;
44     }
45     return 0;
46 }

 

POJ 1006 Biorhythms

标签:time   star   ==   blog   with   end   script   xtend   mos   

原文地址:https://www.cnblogs.com/yxh-amysear/p/8379500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!