L Daylight Saving Time(模拟)

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


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

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
    {
      
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值