L Daylight Saving Time(模拟)

这是一篇关于Daylight Saving Time(夏令时)转换的博客,讲述了在模拟过程中遇到的问题。博主最初错误理解了从PDT到PST转换的时间段,从02:00直接变为01:00,实际上这是由于翻译错误导致的混淆。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


不难的模拟 却被题意卡死了

changes back from PDT to PST at 02:00 to 01:00

这句话是指从2点变成1点 我tm以为是这个时间段。。。一开始就觉得奇怪 时间段怎么会从2->1 就没管他了 结果是翻译错了。。。


#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <math.h>
#include <bitset>
#include <algorithm>
#include <climits>
#include <bits/stdc++.h>
using namespace std;
const int N = 30;
typedef long long LL;
set<int>q;
int judge(int x)
{
    if((x%400)==0||(x%100!=0 && x%4==0)) return 1;
    return 0;
}
int mx[13]={0,31,29,31,30,31,30,31,31,30,31,30,31};
struct node
{
    int year, mon, day;
    int h,m,s;
    bool operator <(const node &A)const
    {
        if(year!=A.year) return year<A.year;
        if(mon!=A.mon) return mon<A.mon;
        if(day!=A.day) return day<A.day;
        if(h!=A.h) return h<A.h;
        if(m!=A.m) return m<A.m;
        if(s!=A.s) return s<A.s;
        return 0;
    }
    bool operator <=(const node &A)const
    {
        if(year!=A.year) return year<A.year;
        if(mon!=A.mon) return mon<A.mon;
        if(day!=A.day) return day<A.day;
        if(h!=A.h) return h<A.h;
        if(m!=A.m) return m<A.m;
        if(s!=A.s) return s<A.s;
        return 1;
    }
    bool operator >(const node &A)const
    {
        if(year!=A.year) return year>A.year;
        if(mon!=A.mon) return mon>A.mon;
        if(day!=A.day) return day>A.day;
        if(h!=A.h) return h>A.h;
        if(m!=A.m) return m>A.m;
        if(s!=A.s) return s>A.s;
        return 0;
    }
    bool operator >=(const node &A)const
    {
        if(year!=A.year) return year>A.year;
        if(mon!=A.mon) return mon>A.mon;
        if(day!=A.day) return day>A.day;
        if(h!=A.h) return h>A.h;
        if(m!=A.m) return m>A.m;
        if(s!=A.s) return s>A.s;
        return 1;
    }
    bool operator ==(const node &A)const
    {
        if(year!=A.year) return 0;
        if(mon!=A.mon) return 0;
        if(day!=A.day) return 0;
        if(h!=A.h) return 0;
        if(m!=A.m) return 0;
        if(s!=A.s) return 0;
        return 1;
    }
}p[10];

int main()
{
    int t, ncase=1;
    scanf("%d", &t);
    while(t--)
    {
        scanf("%d-%d-%d %d:%d:%d", &p[0].year,&p[0].mon,&p[0].day,&p[0].h,&p[0].m,&p[0].s);
        int x=2007, y=0;
        while(x<p[0].year)
        {
            if(judge(x)) y+=366;
            else y+=365;
            x++;
        }

        int hx=y;
        hx+=31;
        if(judge(x)) hx+=29;
        else hx+=28;
        int cnt=0;
        for(int i=1;i<=31;i++)
        {
            hx+=1;
            hx%=7;
            if(hx==0) cnt++;
            if(cnt==2)
            {
                p[1].day=i;
                break;
            }
        }
        p[1].year=x,p[1].mon=3,p[1].h=2,p[1].m=0,p[1].s=0;
        p[2]=p[1];
        p[2].h=3;

        hx=y;
        for(int i=1;i<=10;i++)
        {
            if(i!=2)  hx+=mx[i];
            else
            {
                if(judge(x)) hx+=29;
                else hx+=28;
            }
        }
        cnt=0;
        for(int i=1;i<=30;i++)
        {
            hx+=1;
            hx%=7;
            if(hx==0) cnt++;
            if(cnt==1)
            {
                p[3].day=i;
                break;
            }
        }
        p[3].year=x,p[3].mon=11,p[3].h=1,p[3].m=0,p[3].s=0;
        p[4]=p[3];
        p[4].h=2;
        if(p[0]<p[1]) printf("Case #%d: PST\n",ncase++);
        else if(p[0]<p[2]) printf("Case #%d: Neither\n",ncase++);
        else if(p[0]<p[3]) printf("Case #%d: PDT\n",ncase++);
        else if(p[0]<p[4]) printf("Case #%d: Both\n",ncase++);
        else printf("Case #%d: PST\n",ncase++);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值