1. 程式人生 > >hdu 6112 今夕何夕

hdu 6112 今夕何夕

style 不能 ane col cst return tex 情況 desc

今夕何夕

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 690 Accepted Submission(s): 211


Problem Description 今天是2017年8月6日,農歷閏六月十五。

小度獨自憑欄,望著一輪圓月,發出了“今夕何夕,見此良人”的寂寞感慨。

為了排遣郁結,它決定思考一個數學問題:接下來最近的哪一年裏的同一個日子,和今天的星期數一樣?比如今天是8月6日,星期日。下一個也是星期日的8月6日發生在2023年。

小貼士:在公歷中,能被4整除但不能被100整除,或能被400整除的年份即為閏年。

Input 第一行為T,表示輸入數據組數。

每組數據包含一個日期,格式為YYYY-MM-DD。

1 ≤ T ≤ 10000

YYYY ≥ 2017

日期一定是個合法的日期

Output 對每組數據輸出答案年份,題目保證答案不會超過四位數。

Sample Input 3 2017-08-06 2017-08-07 2018-01-01

Sample Output 2023 2023 2024 思路:模擬年份變化即可,註意特判的情況 AC代碼:
#define _CRT_SECURE_NO_DEPRECATE
#include<iostream>
#include<stdio.h>
#include
<algorithm> #include<queue> #include<set> #include<vector> #include<cstring> #include<string> #include<cmath> using namespace std; int year, month, day; bool judge(int year) {//判斷閏年 if ((!(year % 4) && (year % 100)) || !(year % 400))return true;
return false; } bool if_run = 0, if_hou = 0, special_judge = 0; int main() { int t; scanf("%d", &t); while (t--) { scanf("%d-%d-%d", &year, &month, &day); special_judge = 0; if (judge(year)) { if_run = true; if (month == 2 || month == 1)if_hou = false; else if_hou = true; if (month == 2 && day == 29)special_judge = 1; } else { if_run = false; if (month == 2 || month == 1)if_hou = false; else if_hou = true; } int sum = 0; while (1) { if (!special_judge) { if (if_run) { if (if_hou) { sum += 365 % 7; if (!(sum % 7))break; } else {//非後面月份 sum += 366 % 7; if (!(sum % 7))break; } } else {//非閏年 if (if_hou) { if (judge(year + 1)) { sum += 366 % 7; if (!(sum % 7))break; } else { sum += 365 % 7; if (!(sum % 7))break; } } else {//非後面月份 sum += 365 % 7; if (!(sum % 7))break; } } year++; if (judge(year))if_run = 1; else if_run = 0; } else {//特判 if (judge(year + 4)) { sum += (365 * 3 + 366) % 7; if (!(sum % 7))break; } else sum += (365 * 4) % 7; year += 4; } } if (special_judge) { year += 4; printf("%d\n", year); } else printf("%d\n", ++year); } return 0; }

hdu 6112 今夕何夕