回 帖 发 新 帖 刷新版面

主题:经高手给了一些测试数据后对了,但提交时WA,555555

唉!在PKU里,这道题(2080--Calendar)做了很久,但终不得解,老是提交WA,再次麻烦高手帮帮忙,谢谢先!
(下附原体和我的代码)

Calendar 
Time Limit:1000MS  Memory Limit:30000K
Total Submit:1601 Accepted:591 
Description
A calendar is a system for measuring time, from hours and minutes, to months and days, and finally to years and centuries. The terms of hour, day, month, year and century are all units of time measurements of a calender system. 
According to the Gregorian calendar, which is the civil calendar in use today, years evenly divisible by 4 are leap years, with the exception of centurial years that are not evenly divisible by 400. Therefore, the years 1700, 1800, 1900 and 2100 are not leap years, but 1600, 2000, and 2400 are leap years. 
Given the number of days that have elapsed since January 1, 2000 A.D, your mission is to find the date and the day of the week.
Input
The input consists of lines each containing a positive integer, which is the number of days that have elapsed since January 1, 2000 A.D. The last line contains an integer -1, which should not be processed. 
You may assume that the resulting date won’t be after the year 9999.
Output
For each test case, output one line containing the date and the day of the week in the format of "YYYY-MM-DD DayOfWeek", where "DayOfWeek" must be one of "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday" and "Saturday".
Sample Input
1730
1740
1750
1751
-1
Sample Output
2004-09-26 Sunday
2004-10-06 Wednesday
2004-10-16 Saturday
2004-10-17 Sunday
Source
Shanghai 2004 Preliminary



#include <iostream.h>
#include<iomanip.h>


int main()
{
    char week[7][10]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
    long fh[26],hh[6],y[6]={0,366,731,1096,1461,1468},days;
    int dleap[15]={0,31,60,91,121,152,183,213,244,274,305,335,366,377};
             //若今年是闰年,dleap[i]表示从开头到第i+1月为止,过了多少天
    int dfl[15]={0,31,59,90,120,151,182,212,243,275,304,334,365,377};
           //若今年不是闰年,dfl[i]表示从开头到第i+1月为止,过了多少天
    int i,j,k,p,year,s,weekth,leap=0,q,date;

    for(i=0;i<26;i++)//确定第i个400年内的总天数
        fh[i]=i*146100;
    for(i=0;i<5;i++)
        hh[i]=i*36525;//确定第i个世纪内的总天数


    cin>>days;
    while(days!=-1)
    {
        days++;
        for(i=0;i<26;i++)
                //确定days在第几个400年内,若days<fh[i+1],则days在第i个400年内
            if(days<=fh[i+1])
                break;
    
        days=days-fh[i];
        for(j=0;j<5;j++)
               //确定days在第几个世纪内,若days<hh[j+1],则days在第j个世纪内
            if(days<=hh[j+1])
                break;
        
        days=days-hh[j];
        for(k=0;k<27;k++)//确定days在第几个4年内,若days<1461*(k+1),则says在第k个四年内
            if(days<=1461*(k+1))
                break;

        days=days-1461*k;
        for(p=0;p<6;p++)//确定days在第几年内,若days<y[p+1],则days在dip个年内
            if(days<=y[p+1])
                break;

        days=days-y[p];//days在本年的第几天.
        year=2000+i*400+j*100+k*4+p;//year就是本年份的年值
        if(year%4==0&&year%100!=0||year%4==0&&year%100==0)
            leap=1;
        if(leap)//确定是第几个月
            for(q=0;q<15;q++)
            {
                if(days<=dleap[q+1])
                {
                    date=days-dleap[q];
                    break;
                }
            }

        else
            for(q=0;q<15;q++)
            {
                if(days<=dfl[q+1])
                {
                    date=days-dfl[q];
                    break;
                }
            }

        q++;//月份
        s=year-1+(year-1)/4-(year-1)/100+(year-1)/400+days;
        weekth=s%7;//weekth就是星期数
        
        //printf("%d-%d-%d %s\n",year,q,date,week[weekth]);
        cout<<year<<'-'<<setfill('0')<<setw(2)<<q<<'-'<<setfill('0')<<setw(2)<<date<<' '<<week[weekth]<<endl;
        cin>>days;
    }

    return 1;
}

回复列表 (共14个回复)

沙发

为什么要全用穷举这么麻烦……
设定了2000,jan.1是星期几后,星期几就已经不需要额外费麻烦了
剩下的是日期计算
连续-365,并且设置闰年修正量leapfix来计算已经-了多少年
不够-以后-月的时候穷举就可以了
不过我的思路很可能ot
你的思路可能跟我的思路有相同的缺陷:面对大数时ot

板凳

谢谢你!唉,又学到了很多!

3 楼

oi的题就是要注意极限ot的问题
由于结束年限在9999年
也就是你要支持7999个年度范围内的查询……
看看是不是这里的问题

4 楼

首先,判断是否为闰年那一段错了:
 if(year%4==0&&year%100!=0||year%4==0&&year%100==0)应该是 
 if(year%4==0&&year%100!=0||year%4==0&&year%400==0)
其次,闰年与否的标志leap,在定义时赋值leap=0;一旦某一个年份是闰年时,leap变为leap=1;此后就会一直是leap=1;应该要在每次输入新的数据(days)时要将leap赋值为0:leap=0.
但即使这样改了,还是WA.
根据你的提示,当
输入2921998有 :9999-12-30 Thursday    输入2921999有 :9999-12-31 Friday
输入2922000有:10000-01-01 Saturday    输入2922001有:10000-01-02 Sunday
应该没错吧.综合以上,我改了之后还是错了WA.

5 楼

if(year%4==0&&year%100!=0||year%4==0&&year%400==0)这里为什么要这么写呢?
if(year%4==0&&year%100!=0||year%400==0)这么做不就可以了么?
还有最好检测一下你的程序效率
我还是怀疑大数ot的问题

6 楼

for(i=0;i<26;i++)//确定第i个400年内的总天数
        fh[i]=i*146100;
    for(i=0;i<5;i++)
        hh[i]=i*36525;//确定第i个世纪内的总天数
找到最后的错误了!致命的错误!!!
你看你的程序,每400年的天数出了致命错误!!
每400年应该少3个闰年才对,所以应该是fh[i]=i*146[color=ff0000]097[/color=ff0000];而hh只需计算4组便可,i=0的时候才是36525天!其他情况只有[color=ff0000]36524[/color=ff0000]天!
你的程序根本就算错了!!
这么大的问题我刚刚注意到
我也是太马虎了

7 楼

对对对!厉害啊.在下佩服.这类题果真相当危险.
谢谢![em1]

8 楼

要是7年前,这种错误用不了5分钟就发现了
现在用了好几天才发现
哎……真的是离我打比赛的日子太远了
祝你此次提交顺利

9 楼

唉!还是WA.看样子我要重新写一遍代码了.最好的调试方法是重新写代码.

10 楼

顺便
我怎么觉得你一年给了15个月啊

我来回复

您尚未登录,请登录后再回复。点此登录或注册