1. 程式人生 > >hdu 6112 今夕何夕(模擬)

hdu 6112 今夕何夕(模擬)

courier uri sin 包含 title chmod mon log space

今夕何夕

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

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 Source 2017"百度之星"程序設計大賽 - 初賽(A) 傻逼題 開始一直算 直接模擬就可以了 不小心把c=1寫成c==1
 1
#include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 #include<cstring> 5 #include<cstdlib> 6 #include<string.h> 7 #include<set> 8 #include<vector> 9 #include<queue> 10 #include<stack> 11 #include<map> 12 #include<cmath> 13
typedef long long ll; 14 typedef unsigned long long LL; 15 using namespace std; 16 const double PI=acos(-1.0); 17 const double eps=0.0000000001; 18 const int INF=1e9; 19 const int N=1000+100; 20 int check(int x){ 21 if(x%4==0&&x%100!=0)return 1; 22 if(x%400==0)return 1; 23 return 0; 24 } 25 int fun(int x){ 26 if(x==1||x==3||x==5||x==7)return 1; 27 if(x==8||x==10||x==12)return 1; 28 return 0; 29 } 30 int main(){ 31 int t; 32 scanf("%d",&t); 33 while(t--){ 34 int y,m,d; 35 scanf("%d-%d-%d",&y,&m,&d); 36 int a=y,b=m,c=d; 37 for(int i=1;i<=10000000;i++){ 38 c=c+1; 39 if(check(a)&&b==2&&c==30){ 40 b++; 41 c=1; 42 } 43 else if(check(a)==0&&b==2&&c==29){ 44 b++; 45 c=1; 46 } 47 else if(fun(b)==1&&c==32){ 48 b++; 49 c=1; 50 } 51 else if(fun(b)==0&&c==31){ 52 b++; 53 c=1; 54 } 55 if(b==13){ 56 a++; 57 b=1; 58 } 59 //cout<<a<<" "<<b<<" "<<c<<endl; 60 if(b==m&&c==d&&i%7==0){ 61 cout<<a<<endl; 62 break; 63 } 64 } 65 } 66 }

hdu 6112 今夕何夕(模擬)