CodeForces 724A Checking the Calendar(月份星期的判断,第四场掉分了)

来源:互联网 发布:淘宝内裤 男 买家秀 编辑:程序博客网 时间:2024/06/06 02:17
http://codeforces.com/problemset/problem/724/A
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
mondaytuesday
output
NO
input
sundaysunday
output
YES
input
saturdaytuesday
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.

题意&&思路:

给定两个星期,判断是否存在两个月的第一天是否满足给定的条件。

AC CODE:

#include<stdio.h>#include<cstring>#include<algorithm>#define AC main()using namespace std;const int MYDD = 1103;int d[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};char w[8][16] = {"0",  "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"};int AC {//while(1) {char a[16], b[16];scanf("%s %s", a, b);int v = 1;while(strcmp(w[v], a))  v++;int flag = 0, k;for(int j = 1; j <= 11; j++) {k = (v + d[j] % 7) % 7; if(!k)  k = 7;//printf("%d:  %d  *****\n", j ,k);if(strcmp(w[k], b) == 0) {flag = 1;break;}}if(flag) puts("YES");else puts("NO");//}return 0;}



0 0