Biorhythms(拓展欧几里德+中国剩余定理)

描述

传送门:poj-1006

 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.

Examples

  • intput

    1
    2
    3
    4
    5
    6
    7
    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
  • output

    1
    2
    3
    4
    5
    6
    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.

思路

  • 转化一下即求解最小的$x$并满足:

  • 裸的中国剩余定理,处理一下x<=0和x<d的情况就行了。在这里wa了几发

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include<iostream>
#include<algorithm>
#include<string.h>
#include<string>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
using namespace std;
#define CRL(a) memset(a,0,sizeof(a))
#define INF 0xfffffff
typedef unsigned long long LL;
typedef long long ll;
const double Pi = acos(-1);
const double e = exp(1.0);
const int mod =1e9+7;

int exgcd(int a,int b,int &x,int &y){
if(b==0) return x=1,y=0,a;
int tem=exgcd(b,a%b,y,x);
y-=a/b*x;
return tem;
}

int China(int w[],int b[],int k,int d)
{
int x,y,ns=0,m,n=1;
for(int i=0;i<k;i++) n*=w[i];
for(int i=0;i<k;i++){
m=n/w[i];
exgcd(w[i],m,x,y);
ans=(ans+y*m*b[i])%n;
}
if(ans<=0||ans<d) ans+=n;
return ans;
}

int main()
{
ios::sync_with_stdio(false);
int a[3],w[3]={23,28,33},d,Case=0;
while(cin>>a[0]>>a[1]>>a[2]>>d&&a[0]>=0&&a[1]>=0&&a[2]>=0&&d>=0)
printf("Case %d: the next triple peak occurs in %d days.\n",++Case,China(w,a,3,d)-d);
return 0;
}
-------------本文结束 感谢您的阅读-------------

本文标题:Biorhythms(拓展欧几里德+中国剩余定理)

文章作者:Armin

发布时间:2018年04月28日 - 18:04

最后更新:2018年04月28日 - 19:04

原始链接:http://x-armin.com/Biorhythms/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

小礼物走一波