Description
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
解题思路:
题意为找出1928--9999年所有的五一应该放几天假,其实只要找出星期一到星期天对应的情况,然后看每年的5月1号是星期几就行
细节处理:
预处理,要判断是否为闰年,然后前一年的星期数加上一年的天数余7即为当天星期数
代码:
#include <iostream>
#include<vector>
#include<map>
#include<string>
#include<algorithm>
using namespace std;
int day(int y)
{
if(y%400==0||(y%4==0&&y%100!=0)) return 366;
else return 365;
}
int main()
{
int n,i,m;
int a[10099];
int w[7]={6,9,6,5,5,5,5};
m=2; a[1928]=6;
for(i=1929;i<=10000;i++)
{
m=(m+day(i))%7;
a[i]=w[m];
}
int t;
cin>>t;
while(t--)
{
cin>>n;
cout<<a[n]<<endl;
}
return 0;
}