`
bcyy
  • 浏览: 1936098 次
文章分类
社区版块
存档分类
最新评论

POJ - 1006 Biorhythms 周期相遇 两个思路程序

 
阅读更多

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.
问题的实际和我前面一篇博客的时针,分针和秒针相遇的问题一样的。

有两个解题思路:

1 先计算两个周期相遇的日子,然后验证这个日子是否和第三个周期相遇

2 把三个周期看成三个跑步者,跑到一个地点(日期)停下来,让最慢的先跑,看三者是否相遇,然后再让最慢的先跑,停下来,验证……如此循环

思路1的程序:

int runnersMeet(int p, int e, int i, int d)
{
	p %= 23, e %= 28, i %= 33;	
	while ((i - e) % 28) i += 33;
	while ((i - p) % 23) i += 924;//28*33 == 924
	if (i <= d) return 21252 - (d - i);
	return i - d;
}

第一个while循环是为了计算出i 和e相遇的日子的

第二个whlle循环就是确定了i和e必定相遇的日子是i, i+924, i+924*2……然后验证这些日子是否也和p相遇

思路2程序:

int runnersMeet(int p, int e, int i, int d)
{
	p %= 23, e %= 28, i %= 33;	
	while (!(p == e && e == i))
	{
		int m = min(p, min(e, i));
		if (m == p) p += 23;
		else if (m == e) e += 28;
		else i += 33;
	}
	if (p <= d) return 21252 - (d - p);//注意公式计算别搞错了
	return p - d;
}

思路2好像更简单点,更好理解点。

最后主程序,就AC啦。

void Biorhythms()
{
	int p,e,i,d, c = 0;
	while (cin>>p>>e>>i>>d && -1 != d)
	{
		c++;
		printf("Case %d: the next triple peak occurs in %d days.\n",
			c, runnersMeet(p, e, i, d));
	}
}

int main()
{
	Biorhythms();
	return 0;
}

感觉是第一个思路的程序走的快点,但是实际运行反而是第一个程序慢,呵呵,计算的时间复杂度都是一样的,oj系统计算的运行时间估计也不完全可靠吧。

两个思路的应用情况:

1 如果一个的速度和其他两个的速度相差很大的时候,比如时针,分钟和秒针的情况,秒针走快很多,那么就肯定是第一个思路快,

2 但是如果如本题的话,三者速度相差无几,那么使用加法,不用模操作,也许就是第二个思路快的原因吧。


分享到:
评论

相关推荐

    POJ1006-Biorhythms【中国剩余定理】

    《POJ1006-Biorhythms:深入解析与应用中国剩余定理》 在计算机编程领域,解决算法问题是我们提升技术能力的重要途径。POJ1006-Biorhythms是一个典型的算法挑战,它引入了数学中的一个重要概念——中国剩余定理。...

    poj 1006 Biorhythms 生理周期

    因为三个周期的周长不同,所以通常三个周期的高峰不会落在同一天。对于每个人,我们想知道何时三个高峰落在同一天。对于每个周期,我们会给出从当前年份的第一天开始,到出现高峰的天数(不一定是第一次高峰出现的...

    poj-1002源码,没有题解,题解看博客

    poj-1002源码,没有题解,题解看博客poj-1002源码,没有题解,题解看博客poj-1002源码,没有题解,题解看博客poj-1002源码,没有题解,题解看博客

    poj-1009.rar_poj

    【标题】"POJ-1009"是北大在线编程竞赛平台上的一个题目,它涉及到计算机科学中的算法和编程技巧。POJ(Problem Set of Peking University)是中国北京大学主办的一个在线编程竞赛平台,旨在提高学生的算法设计和...

    POJ3253-POJ3253-Fence Repair【STL优先队列】

    标题“POJ3253-POJ3253-Fence Repair【STL优先队列】”指的是一个在线编程竞赛题目,源自北京大学的在线判题系统POJ(Problem Online Judge)。该题目要求参赛者使用C++编程语言解决特定的问题,并且在解决方案中...

    POJ2002-Squares

    【标题】"POJ2002-Squares"是一个经典的计算机编程题目,源自北京大学的在线判题系统(POJ,即PKU Online Judge)。这个题目主要涉及到算法设计和实现,尤其是数学和动态规划方面的知识。 【描述】"解题报告+AC代码...

    POJ---1456.Supermarket测试数据及答案

    POJ---1456.Supermarket测试数据及答案,题目描述:A supermarket has a set Prod of products on sale. It earns a profit px for each product x∈Prod sold by a deadline dx that is measured as an integral ...

    算法-开关问题(POJ-1830)(包含源程序).rar

    3. **图论**:开关可能构成一个网络,其中的每个节点代表一个开关,每条边表示两个开关之间的相互作用。问题可能需要找到通过操作开关达到特定目标状态的最小步骤数。 4. **位操作**:如果开关的状态可以用二进制...

    POJ-3299解题

    POJ-3299解题 C++源代码 Description Adapted from Wikipedia, the free encyclopedia The humidex is a measurement used by Canadian meteorologists to reflect the combined effect of heat and humidity. It...

    acm新手刷题攻略之poj

    - 包括Dijkstra算法、Bellman-Ford算法以及Floyd算法等,用于求解图中两个节点间的最短路径。 2. **最小生成树** - 推荐题目:[poj1789](https://vjudge.net/problem/POJ-1789)、[poj2485]...

    poj-1028-Web-Navigation.zip_poj

    【标题】"poj-1028-Web-Navigation.zip_poj" 指向的是一个编程竞赛问题,POJ(Programming Online Judge)平台上的第1028题,名为“Web Navigation”。该问题通常涉及到算法设计和实现,可能是为了考察参赛者的编程...

    poj-2528 Mayor's posters 测试数据及答案

    【标题】"poj-2528 Mayor's posters 测试数据及答案"涉及的是一个编程竞赛中的问题,这个问题来源于POJ(Programming Online Judge)平台,编号为2528。POJ是一个在线的编程练习系统,它提供了一系列的问题供程序员...

    POJ-2151.rar_poj

    【标题】"POJ-2151.rar_poj"是一个与编程竞赛相关的压缩文件,主要涉及的问题是“检查问题的难度”,并且是为动态规划的实战练习而设计的。这个题目来自于著名的在线编程竞赛平台POJ(Programming Online Judge)。 ...

    POJ2525-Text Formalization【TrieTree】

    输入是一组字符串,输出则是这些字符串按字典序排序后的结果,但需要注意的是,如果两个字符串只在最后一个字符上有区别,那么较短的那个字符串应该排在前面。这就需要我们借助Trie树来快速地进行查找和排序。 Trie...

    POJ-1170.rar_poj

    标题中的“POJ-1170.rar_poj”指的是编程竞赛网站POJ(Programming Online Judge)上的一个问题,编号为1170。POJ是一个在线的编程练习平台,主要面向学习和提升算法与编程技能的用户。这个问题的解决方案可能包含在...

Global site tag (gtag.js) - Google Analytics