May Day Holiday(蔡勒公式)

As a university advocating self-learning and work-rest balance, Marjar University has so many days of rest, including holidays and weekends. Each weekend, which consists of Saturday and Sunday, is a rest time in the Marjar University.

The May Day, also known as International Workers’ Day or International Labour Day, falls on May 1st. In Marjar University, the May Day holiday is a five-day vacation from May 1st to May 5th. Due to Saturday or Sunday may be adjacent to the May Day holiday, the continuous vacation may be as long as nine days in reality. For example, the May Day in 2015 is Friday so the continuous vacation is only 5 days (May 1st to May 5th). And the May Day in 2016 is Sunday so the continuous vacation is 6 days (April 30th to May 5th). In 2017, the May Day is Monday so the vacation is 9 days (April 29th to May 7th). How excited!

Edward, the headmaster of Marjar University, is very curious how long is the continuous vacation containing May Day in different years. Can you help him?

Input
There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case, there is an integer y (1928 <= y <= 9999) in one line, indicating the year of Edward’s query.

Output
For each case, print the number of days of the continuous vacation in that year.

Sample Input
3
2015
2016
2017
Output
5
6
9
本题是蔡勒公式的应用,下面就介绍一下蔡勒公式:
蔡勒(Zeller)公式,是一个计算星期的公式,随便给一个日期,就能用这个公式推算出是星期几,具体的可以查看这个链接https://baike.baidu.com/item/%E8%94%A1%E5%8B%92%E5%85%AC%E5%BC%8F/10491767?fr=aladdin

#include<stdio.h>
int main()
{
	int T,y,m,d,w,c;
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d",&y);
		m=5;d=1;
		w=(d+2*m+3*(m+1)/5+y+y/4-y/100+y/400)%7+1;
		if(w==7)
			printf("6\n");
		else if(w==1)
			printf("9\n");
		else if(w==2)
			printf("6\n");
		else
			printf("5\n");
	}
	return 0;
}

正常给出年月日求星期几的模板如下:

		if(m==1||m==2)
                m += 12, y--;
        if((y<1752)||(y==1752&&m<9)||(y==1752&&m==9&&d<3))
                w = (d + 2*m + 3*(m+1)/5 + y + y/4 + 5)%7+1;
        else
                w = (d + 2*m + 3*(m+1)/5 + y + y/4 -y/100 + y/400)%7+1;

猜你喜欢

转载自blog.csdn.net/weixin_44313771/article/details/104456066