黑色星期五Friday the Thirteenth(枚举|蔡勒公式|基姆拉尔森公式)

题目描述

13号又是一个星期五。13号在星期五比在其他日子少吗?为了回答这个问题,写一个程序,要求计算每个月的十三号落在周一到周日的次数。给出N年的一个周期,要求计算1900年1月1日至1900+N-1年12月31日中十三号落在周一到周日的次数,N为正整数且不大于400.

这里有一些你要知道的:

1、1900年1月1日是星期一.

2、4,6,11和9月有30天.其他月份除了2月都有31天.闰年2月有29天,平年2月有28天.

3、年份可以被4整除的为闰年(1992=4*498 所以 1992年是闰年,但是1990年不是闰年).

4、以上规则不适合于世纪年。可以被400整除的世纪年为闰年,否则为平年。所以,1700,1800,1900和2100年是平年,而2000年是闰年.

请不要调用现成的函数

请不要预先算好数据(就是叫不准打表)!

输入输出格式

输入格式:

 

一个正整数n.

 

输出格式:

 

**输出请从周六开始

 

输入输出样例

输入样例#1: 复制

20

输出样例#1: 复制

36 33 34 33 35 35 34

   有一种似曾相识的感觉。大体思路还是比较明确的,细节实现花了挺多的实现,month数组一开始没给month[0]赋值。。。卡了一会。
#include
using namespace std;
#define LL long long
int sum[8];
int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
bool judge(int x)//判断leapyear
{
    if((x%4==0&&x%100!=0)||(x%400==0)) return 1;
    else return 0;
}
int main()
{
   int n;
   cin>>n;
   int k=6;
   for(int i=1;i<=n;++i)
   {
         if(i==1) sum[k]++;
         else {
            k=(k+(month[12])%7)%7==0?7:(k+(month[12])%7)%7;//等价于 k=(k+month[12]%7-1)%7+1;
            sum[k]++;
         }
       int year=1900+i-1;
       if(judge(year)) month[2]=29;
       else month[2]=28;
       for(int j=1;j<=11;++j)
       {
           k=(k+(month[j])%7)%7==0?7:(k+(month[j])%7)%7;
           sum[k]++;
       }
   }
   cout<

补充一个蔡勒公式吧。

AC Code:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
#define maxn (LL)1e5
#define INF 0x3f3f3f3f
const double eps = 0.00001;
using namespace std;
int getday(int year,int month,int day)//公式模板
{
  if (month < 3)
		{
			year -= 1;
			month += 12;
		}
		int c = int(year / 100),y = year - 100 * c;
		int w = int(c / 4) - 2*c +y +int(y/4) +(26 * (month + 1)/10) + day - 1;
		w = (w % 7 + 7) % 7;
		return w;
}
int sum[8];
int main()
{
   #ifndef ONLINE_JUDGE
   freopen("input.txt","r",stdin);
   #endif // ONLINE_JUDGE
   int N;
   cin>>N;
   for(int i = 1900;i<=1900+N-1;++i)//无脑遍历
   {
       for(int j = 1;j<=12;++j)
         sum[getday(i,j,13)]++;
   }
   cout<

唔,要不最后再来一个劲爆的吧,嚯嚯嚯。

AC Code:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
#define maxn (LL)1e5
#define INF 0x3f3f3f3f
const double eps = 0.00001;
using namespace std;
int week(int y,int m,int d)//基姆拉尔森计算公式
{
    if(m==1||m==2) m+=12,y=y-1;
	return (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400)%7+1;
}
int sum[8];
int main()
{
   #ifndef ONLINE_JUDGE
   freopen("input.txt","r",stdin);
   #endif // ONLINE_JUDGE
   int N;
   cin>>N;
   for(int i = 1900;i<=1900+N-1;++i)
   {
       for(int j = 1;j<=12;++j)
         sum[week(i,j,13)]++;
   }
   cout<

 

你可能感兴趣的:(暴力,思维,枚举)