Section 1.1 Friday the Thirteen

Posted on 2008-04-09 17:38 Codeboy 阅读(262) 评论(0)  编辑 收藏 引用

Is Friday the 13th really an unusual event?

 

That is, does the 13th of the month land on a Friday less often than on any other day of the week? To answer this question, write a program that will compute the frequency that the 13th of each month lands on Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday over a given period of N years. The time period to test will be from January 1, 1900 to December 31, 1900+N-1 for a given number of years, N. N is non-negative and will not exceed 400.

 

There are few facts you need to know before you can solve this problem:

 

  • January 1, 1900 was on a Monday.
  • Thirty days has September, April, June, and November, all the rest have 31 except for February which has 28 except in leap years when it has 29.
  • Every year evenly divisible by 4 is a leap year (1992 = 4*498 so 1992 will be a leap year, but the year 1990 is not a leap year)
  • The rule above does not hold for century years. Century years divisible by 400 are leap years, all other are not. Thus, the century years 1700, 1800, 1900 and 2100 are not leap years, but 2000 is a leap year.
  •  

Do not use any built-in date functions in your computer language.

Don't just precompute the answers, either, please.

 

PROGRAM NAME: Friday

 

INPUT FORMAT

One line with the integer N.

 

SAMPLE INPUT (file friday.in)

20

 

OUTPUT FORMAT

Seven space separated integers on one line. These integers represent the number of times the 13th falls on Saturday, Sunday, Monday, Tuesday, ..., Friday.

 

SAMPLE OUTPUT (file friday.out)

36 33 34 33 35 35 34


我的解答:

算法规律很简单,就是一个月一个月地把天数加上再对7取模就得到是星期几。再是平年和闰年的判断,能被400整除的或能被4而不能被100整除的年份。

 

#include <fstream>
using namespace std;

bool IsLeapYear(int);

int main(void)
{
    ofstream fout(
"friday.out");
    ifstream fin(
"friday.in");
        
    
int DaysOfMonth[12= 
        
{312831303130313130313031};
    
int TimesOfDay[7= {0000001};
    
int N, MonthToCal, Leap = 1900;
    
    fin 
>> N;
    MonthToCal 
= N * 12 - 1;
    
    
int a = 13, c;
    
for (int i = 0; i < MonthToCal; i++{
        c 
= a + DaysOfMonth[i % 12];
        
if (i % 12 == 1 && IsLeapYear(Leap)) c++;
        c 
= c % 7;
        TimesOfDay[c]
++;
        a 
= c;
        
if (i % 12 == 11) Leap++;
    }


    fout 
<< TimesOfDay[6];
    
for (int i = 0; i < 6; i++)
        fout 
<< ' ' << TimesOfDay[i];
    fout 
<< endl;
    
    
return 0;
}


bool IsLeapYear(int year)
{
    
if (year % 400 == 0 || year % 4 ==0 && year % 100 != 0return 1;
    
return 0;
}

Analysis:Friday the Thirteenth

Brute force is a wonderful thing. 400 years is only 4800 months, so it is perfectly practical to just walk along every month of every year, calculating the day of week on which the 13th occurs for each, and incrementing a total counter.


#include <stdio.h>
#include 
<stdlib.h>
#include 
<string.h>
#include 
<assert.h>

int isleap(int y)
{
    
return y%4==0 && (y%100 != 0 || y%400 == 0);
}


int mtab[] = 312831303130313130313031 };

/* return length of month m in year y */
int mlen(int y, int m)
{
    
if(m == 1)    /* february */
        
return mtab[m]+isleap(y);
    
else
        
return mtab[m];
}


void main(void)
{
    FILE 
*fin, *fout;
    
int i, m, dow, n, y;
    
int ndow[7];

    fin 
= fopen("friday.in""r");
    fout 
= fopen("friday.out""w");
    assert(fin 
!= NULL && fout != NULL);

    fscanf(fin, 
"%d"&n);

    
for(i=0; i<7; i++)
        ndow[i] 
= 0;

    dow 
= 0;    /* day of week: January 13, 1900 was a Saturday = 0 */
    
for(y=1900; y<1900+n; y++{
        
for(m=0; m<12; m++{
            ndow[dow]
++;
            dow 
= (dow+mlen(y, m)) % 7;
        }

    }


    
for(i=0; i<7; i++{
        
if(i)
            fprintf(fout, 
" ");
        fprintf(fout, 
"%d", ndow[i]);
    }

    fprintf(fout, 
"\n");

    exit(
0);
}