博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ1006 UVA756 UVALive5421 Biorhythms【中国剩余定理】
阅读量:6509 次
发布时间:2019-06-24

本文共 4118 字,大约阅读时间需要 13 分钟。

Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 136837   Accepted: 43771

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 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

Regionals 1999 >> North America - East Central NA

问题链接

问题描述参见上文。

问题分析本题可以直接用中国剩余定理来解,同余方程如下:

X≡p(mod 23)

X≡e(mod 28)

X≡i(mod 33)

其中,23、28和33是两两互素的,满足中国剩余定理的前提条件。

程序说明

这里给出两个版本的C语言程序,一个是使用中国剩余定理来解,另外一个使用试探法来解(时间上可行,代码比较简洁)

AC的C语言程序(程序中有C++的注释,需要C++的编译):

/* POJ1006 UVA756 UVALive5421 Biorhythms */#include 
// 递推法实现扩展欧几里德算法long exgcd(long a, long b, long *x, long *y){ long x0=1, y0=0, x1=0, y1=1; long r, q; *x=0; *y=1; r = a % b; q = (a - r) / b; while(r) { *x = x0 - q * x1; *y = y0 - q * y1; x0 = x1; y0 = y1; x1 = *x; y1 = *y; a = b; b = r; r = a % b; q = (a - r) / b; } return b;}// 扩展欧几里德算法求逆元long minv(long a, long p){ long x, y; exgcd(a, p, &x, &y); return x<0 ? x+p : x;}// 中国剩余定理(Chinese remainder theorem, CRT)long crt(long a[], long m[], int n){ long bm=1, mi, x=0; int i; for(i=0; i

AC的C语言程序:

/* POJ1006 UVA756 UVALive5421 Biorhythms */#include 
int main(void){ int p, e, i, d; int date, caseno=1; while(scanf("%d%d%d%d", &p, &e, &i, &d)) { if(p == -1) break; date = d; d++; while((d - p) % 23 != 0) d++; while((d - e) % 28 != 0 || (d - i) % 33 != 0) d += 23; printf("Case %d: the next triple peak occurs in %d days.\n", caseno++, d - date); } return 0;}

转载于:https://www.cnblogs.com/tigerisland/p/7564903.html

你可能感兴趣的文章
swoft| 源码解读系列一: 好难! swoft demo 都跑不起来怎么破? docker 了解一下呗~
查看>>
win7 蛋疼的时间格式转化
查看>>
while死循环问题-输入字符就会死循环
查看>>
C++中二维数组的动态创建与处理
查看>>
SPOJ 10628 COT - Count on a tree(在树上建立主席树)(LCA)
查看>>
general error c1010070: Failed to load and parse the manifest
查看>>
SpringInAction--Bean参数的自动注入
查看>>
AndroidStudio打包apk,安装出现签名冲突--解决办法
查看>>
Android开发中保存数据的四种方法方法
查看>>
文曲星猜数字游戏6步算法(含代码)
查看>>
php.ini 中文版[转]
查看>>
easyui refresh 刷新两次的解决方法(推荐)
查看>>
Transfer-Encoding: chunked,TE and Trailer
查看>>
关于BCS与SQL
查看>>
xz文件如何解压
查看>>
【实用类String】String类方法的应用案例:查找判断指定字符出现的次数和位置...
查看>>
HDU 2073 无限的路
查看>>
14DBCP连接池
查看>>
为什么JS是单线程?JS中的Event Loop(事件循环)?JS如何实现异步?setimeout?
查看>>
源码安装Nginx以及用systemctl管理
查看>>