Biorhythms
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2408 Accepted Submission(s): 1053
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.
Case 1: the next triple peak occurs in 1234 days.
Use the plural form ``days'' even if the answer is 1.
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
有3个循环周期,周期天数分别为23、28、33。对于某一年,已知某年这3个周期的某一峰值分别是当年的第p、e、i天,
问从第d天开始到最近一个满足3个周期都达到峰值的日期还有多少天。
可以简化方程为
23x + p = a;
28y + e = a;
33z + i = a;
然后可以写成
a===p(mod 23)
a===e(mod 28)
a===i(mod33)
这样就是转化成中国剩余定理的标准形式,注意中国剩余定理要满足模值要互素,正好在这个题中23 和28和33是互素的
介绍一下中国剩余定理
假设有式子
x===a[i](mod b[i])
0<i<k 的n个式子,式子中要求任何两个b[i]之间是互素的
然后它的解的形式是
m= b[0]*b[1]*b[2]*……*b[n];
去M[t] = m/b[t];
M[t]^-1 为用扩展欧几里得求出的M[t]对于模m的逆元
有ans = a[0]*M[0]*M[0]^-1+a[1]*M[1]*Mt[1]^-1+……+a[n]*M[n]*M[n]^-1;
下面是代码:
//互素的中国剩余定理
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int mp[] = {,,};
int s[];
int exgcd(int a, int b, int &x, int &y)
{
if(b==) {
x = ;
y = ;
return a;
}
int ans = exgcd(b,a%b,x,y);
int tm = x;
x = y;
y = tm-a/b*y;
return ans;
} int chinese_reminder()
{
int n = ;
int ans = ;
int x,y;
for(int i = ; i < ; i++) n*=mp[i];
for(int i = ; i < ; i++){
exgcd(n/mp[i],mp[i],x,y);
ans+=s[i]*x*(n/mp[i]);
}
ans = (ans+n)%n;
return ans;
}
int main()
{
int ans;
int T;
scanf("%d",&T);
int cnt = ;
int d;
while(~scanf("%d%d%d%d",&s[],&s[],&s[],&d))
{
if(s[]==-&&s[]==-&&s[]==-&&d==-) return ;
printf("Case %d: the next triple peak occurs in ",cnt++);
ans = chinese_reminder();
if(d>ans) printf("%d days.\n",-d+ans);
else printf("%d days.\n",ans-d);
}
return ;
}