Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined)A. Checking the Calendar

本文介绍了一个简单的编程问题——校验日历问题。任务是判断给定的两个连续月份的第一天是否可以分别对应到指定的两个星期几。文章提供了一种解决方案,并附带了两段代码示例。

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

A. Checking the Calendar
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given names of two days of the week.

Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the first day of the next month was equal to the second day of the week you are given. Both months should belong to one year.

In this problem, we consider the Gregorian calendar to be used. The number of months in this calendar is equal to 12. The number of days in months during any non-leap year is: 312831303130313130313031.

Names of the days of the week are given with lowercase English letters: "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".

Input

The input consists of two lines, each of them containing the name of exactly one day of the week. It's guaranteed that each string in the input is from the set "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".

Output

Print "YES" (without quotes) if such situation is possible during some non-leap year. Otherwise, print "NO" (without quotes).

Examples
input
monday
tuesday
output
NO
input
sunday
sunday
output
YES
input
saturday
tuesday
output
YES
Note

In the second sample, one can consider February 1 and March 1 of year 2015. Both these days were Sundays.

In the third sample, one can consider July 1 and August 1 of year 2017. First of these two days is Saturday, while the second one is Tuesday.



原题链接:http://codeforces.com/contest/724/problem/A

水题:告诉你连续两个月每个月1号星期几,问你是否存在。

注意:都是平年。

水题,更考验玩家水平。

我的渣渣代码:暴力。

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <map>
using namespace std;

int month[12]= {31,28,31,30,31,30,31,31,30,31,30,31};
const char *week[]=
{
    "monday",
    "tuesday",
    "wednesday",
    "thursday",
    "friday",
    "saturday",
    "sunday"
};
int main()
{
    map<string,int>mp;
    for(int i=0; i<7; i++)
    {
        mp[week[i]]=i;
    }
    char a[10],b[10];
    while(cin>>a>>b)
    {
        int x=mp[a];
        int y=mp[b];
        bool flag=false;
        for(int i=0; i<12; i++)
        {
            int sum=month[i]+x;
            if((sum%7==mp[b]))
            {
                flag=true;
                break;
            }
        }
        if(flag)
            cout<<"YES"<<endl;
        else
            cout<<"NO"<<endl;
    }
    return 0;
}

高手代码:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    map<string,int>M;
    M["monday"]=1;
    M["tuesday"]=2;
    M["wednesday"]=3;
    M["thursday"]=4;
    M["friday"]=5;
    M["saturday"]=6;
    M["sunday"]=7;
    string s1,s2;
    cin>>s1>>s2;
    int x=(M[s2]-M[s1]+7)%7;
    puts(x==0||x==3||x==2?"YES":"NO");
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值