• CF 304B——Calendar——————【年月日计算】


    B - Calendar
    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
    Appoint description: 

    Description

    Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap years as follows:

    Every year that is exactly divisible by four is a leap year, except for years that are exactly divisible by 100; the centurial years that are exactly divisible by 400 are still leap years. For example, the year 1900 is not a leap year; the year 2000 is a leap year.

    In this problem, you have been given two dates and your task is to calculate how many days are between them. Note, that leap years have unusual number of days in February.

    Look at the sample to understand what borders are included in the aswer.

    Input

    The first two lines contain two dates, each date is in the format yyyy:mm:dd (1900 ≤ yyyy ≤ 2038 and yyyy:mm:dd is a legal date).

    Output

    Print a single integer — the answer to the problem.

    Sample Input

    Input
    1900:01:01
    2038:12:31
    Output
    50768
    Input
    1996:03:09
    1991:11:12
    Output
    1579


    题目大意:问你在这两个时间内有多少天。

    #include<bits/stdc++.h>
    using namespace std;
    int LeapY[12]={31,29,31,30,31,30,31,31,30,31,30,31};
    int ULeapY[12]={31,28,31,30,31,30,31,31,30,31,30,31};
    int sum;
    bool judge(int year){
        if(year%400==0||(year%4==0&&year%100!=0))
            return true;
        return false;
    }
    int main(){
        int i,yst,mst,dst,yen,men,den,stsum,tmp;
        while(scanf("%d:%d:%d",&yst,&mst,&dst)!=EOF){
            scanf("%d:%d:%d",&yen,&men,&den);
            if(yst>yen){
               swap(yst,yen);
               swap(mst,men);
               swap(dst,den);
            }
            else if(yst==yen){
                if(mst>men){
                    swap(mst,men);
                    swap(dst,den);
                }else if(mst==men){
                    if(dst>den){
                      swap(dst,den);
                    }
                }
            }
            sum=stsum=0;
            if(judge(yen)){
                for(i=1;i<men;i++){
                    sum+=LeapY[i-1];
                }
                sum+=den;
            }else{
                for(i=1;i<men;i++){
                    sum+=ULeapY[i-1];
                }
                sum+=den;
            }
            if(judge(yst)){
                for(i=1;i<mst;i++){
                   stsum+=LeapY[i-1];
                }
                stsum+=dst;
                sum=sum+366-stsum;
            }else{
                for(i=1;i<mst;i++){
                    stsum+=ULeapY[i-1];
                }
                stsum+=dst;
                sum=sum+365-stsum;
            }
            for(i=yst+1;i<yen;i++){
                if(judge(i)){
                    sum+=366;
                }else{
                    sum+=365;
                }
            }
            if(yst==yen){
                if(judge(yst)){
                    sum-=366;
                }else{
                    sum-=365;
                }
            }
            printf("%d
    ",sum);
        }
        return 0;
    }
    /*
    1999:03:02
    1999:03:01
    2000:03:03
    2000:03:01
    
    1999:03:05
    1999:05:05
    
    2000:03:05
    2000:05:05
    
    1999:01:01
    1999:01:01
    
    
    */
    

      

  • 相关阅读:
    ArrayList集合 、特殊集合
    二维数组 、多维数组
    一维数组
    类:String,Math,DateTime,Random
    while做法1.兔子生兔子 2.求100以内质数的和3.洗发水15元 牙膏5元 香皂2元 150元的算法
    博客迁移
    [WC2008]游览计划 「斯坦那树模板」
    [SDOI2009]HH去散步 「矩阵乘法计数」
    [HNOI2007]梦幻岛宝珠 「套路:分层 $DP$」
    多项式求逆
  • 原文地址:https://www.cnblogs.com/chengsheng/p/4540556.html
Copyright © 2020-2023  润新知