hdu 1370

来源:互联网 发布:java actionevent 编辑:程序博客网 时间:2024/05/17 23:32
Problem 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.


This problem contains multiple test cases!

The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.

The output format consists of N output blocks. There is a blank line between output blocks.
 

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
10 0 0 00 0 0 1005 20 34 3254 5 6 7283 102 23 320203 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
East Central North America 1999; Pacific Northwest 1999
 

Recommend
Eddy   |   We have carefully selected several similar problems for you:  1788 1573 1695 1211 1852 
标准的中国剩余定理的应用,该定理算法的实现也就是循环调用拓展的欧几里得原理
代码
#include <iostream>#include <stdio.h>using namespace std;int x,y;int s[15],r[15];//一个用来存模,一个用来存余数int d;long long exgcd(long long a,long long b){  long long t,d;  if(b==0)  {   x=1;   y=0;   return a;  }  d=exgcd(b,a%b);  t=x;  x=y;  y=t-(a/b)*y;  return d;}int hehe(){  long long ans=1,res=0,x1;  int tmp; for(int i=0;i<=2;i++)    ans=ans*s[i]; for(int i=0;i<=2;i++) {  x1=ans/s[i];  exgcd(x1,s[i]);  int k=x/s[i];//这四行代码是来求满足题意的最小x,因为x可能为负数  x=x-k*s[i];  if(x<0)    x=x+s[i];  res=(res+x1*x*r[i])%ans;//求出的最小非负整数解 }  tmp=res-d;//有可能为负数  if(tmp<=0)  tmp=tmp+ans; return tmp;}int main(){    int p,e,i,count=0,tmp,c;    cin>>c;//题目要输这个数是什么意思呢    while(cin>>p>>e>>i>>d)    {     count++;     if(p==-1&&e==-1&&i==-1&&d==-1)        break;    s[0]=23,s[1]=28,s[2]=33;    r[0]=p,r[1]=e,r[2]=i;     tmp=hehe();     printf("Case %d: the next triple peak occurs in %d days.\n",count,tmp);    }    return 0;}

0 0
原创粉丝点击