打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
USACO/friday
Friday the Thirteenth

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 positive and will not exceed 400.

Note that the start year is NINETEEN HUNDRED, not 1990.

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


/*ID: liluvu1LANG: C++TASK: friday*/#include <stdio.h>#include <string.h>#define MAX_N 400int days[2][13] = {	{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},	{0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}};int counts[7]; // begin with Saturday =0, Sunday=1, Monday=2, Tuesday, ..., Fridayint leap(int year){	if ((year%4 == 0 && year%100 != 0) || year%400 == 0) 		return 1;	return 0;}int calWeek(int day, int first){	return (day + first -1)%7;}int main(){	FILE *fin = NULL;	FILE *fout = NULL;	fin = fopen("friday.in", "r");	fout = fopen("friday.out", "w");	int n = 0;	fscanf(fin, "%d\n", &n);		int first = 2; //Monday, frist day of a year	for (int i = 0; i < n; i++) {		int isLeap = leap(1900+i);		int acc = 0;		for (int j = 1; j <= 12; j++) {			counts[calWeek(acc+13, first)]++;			acc += days[isLeap][j];		}		first = calWeek(acc+1, first);	}			for (int i = 0; i < 7; i++) {		if (i == 6) 			fprintf(fout, "%d", counts[i]);		else			fprintf(fout, "%d ", counts[i]);	}	fprintf(fout, "\n");	return 0;}
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
3.16
有关时间、星期、月份、节日的英语
Black Friday results a useless indicator
2023 Monthly 英文日历 (with Holiday)
C语言——enum枚举类型用法解析
计算两个日期之间相差的天数
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服