Biorhythms---查询周期数据

来源:互联网 发布:ie浏览器官方下载 mac 编辑:程序博客网 时间:2024/05/17 21:46

引用

 


 

 

Time Limit: 1000MSMemory Limit: 10000KTotal Submissions: 65775Accepted: 19296

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.


分析:
输入4个数据p、e、i和d,分别周期p(23),e(28),i(33).根据输入输出的数据比较:
最终days+d-p为23的倍数;
最终days+d-e为28的倍数;
最终days+d-i为33的倍数;
程序是写出来了,但是还是不知道为什么是这个规则。。。
看题目完全不理解,看例子猜出的规则总感觉不可靠。
我的代码:
#include <iostream>
#include <conio.h>
using namespace std;
struct Biorhythms
{
 int peak_p;
 int peak_e;
 int peak_i;
 int day;
 struct Biorhythms* next;
};
struct Op
{
 char ch[51];
 struct Op* next;
};
int main()
{
 int peak_p,peak_e,peak_i;
 int day;
 Biorhythms res;
 Biorhythms* tail;
 tail=&res;
 tail->next=NULL;
 
 cout<<"Input p(physical),e(emotional),i(intellectual),d(day start):"<<endl;
 //输入数据
 while(1)
 {
  cin>>peak_p>>peak_e>>peak_i>>day;
  if(peak_p==-1 && peak_e==-1 && peak_i==-1 && day==-1) break;
  if(peak_p>=0 && peak_p<=365 && peak_e>=0 && peak_e<=365 && peak_i>=0 && peak_i<=365 && day>=0 && day<=365)
  {
   tail->next=new Biorhythms;
   tail=tail->next;
   
   tail->peak_p=peak_p;
   tail->peak_e=peak_e;
   tail->peak_i=peak_i;
   tail->day=day;
   tail->next=NULL;
  }
 }
 
 //计算公倍数
 tail=res.next;
 Op Output;
 Op* Opt;
 
 Opt=&Output;
 Opt->next=NULL;
 day=0;
 int index=0;
 while(tail)
 {
  day=tail->day;
  peak_p=tail->peak_p;
  peak_e=tail->peak_e;
  peak_i=tail->peak_i;
  while(day<=21252)
  {
   
   if((((day+tail->day)-peak_p>0)?((day+tail->day)-peak_p):(peak_p-(day+tail->day)))%23==0
    && (((day+tail->day)-peak_e>0)?((day+tail->day)-peak_e):(peak_e-(day+tail->day)))%28==0
    && (((day+tail->day)-peak_i>0)?((day+tail->day)-peak_i):(peak_i-(day+tail->day)))%33==0)
   {
    if(day==tail->day)
     day=21252-day;
    index=index+1;
    Opt->next=new Op;
    Opt=Opt->next;
    sprintf(Opt->ch,"Case %d: the next triple peak occurs in %d days.",index,day);
    Opt->next=NULL;
    tail=tail->next;
    break;
   }
   if(day==21252)
   {
    printf("day>21252");
    tail=tail->next;
   }
   day++;
  }
 }
 //输出显示
 Opt=Output.next;
 while(Opt)
 {
  cout<<Opt->ch<<endl;
  Opt=Opt->next;
 }
 _getch();
 return 0;
}