小明正在整理一批历史文献。这些历史文献中出现了很多日期。
小明知道这些日期都在1960年1月1日至2059年12月31日。
令小明头疼的是,这些日期采用的格式非常不统一,有采用年/月/日的,有采用月/日/年的,还有采用日/月/年的。更加麻烦的是,年份也都省略了前两位,使得文献上的一个日期,存在很多可能的日期与其对应。
比如02/03/04,可能是2002年03月04日、2004年02月03日或2004年03月02日。
给出一个文献上的日期,你能帮助小明判断有哪些可能的日期对其对应吗?
一个日期,格式是”AA/BB/CC”。
即每个’/’隔开的部分由两个 0-9 之间的数字(不一定相同)组成。
输出若干个不相同的日期,每个日期一行,格式是”yyyy-MM-dd”。
多个日期按从早到晚排列。
0 ≤ A, B, C ≤ 9
02/03/04
2002-03-04
2004-02-03
2004-03-02
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
using namespace std;
int d[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
// 判断是否为合法日期
bool isTrueDate(int a, int b, int c) {
if (b == 0 || b > 12)
return false;
if (b != 2 && c > d[b])
return false;
int ret = a % 400 == 0 || a % 100 != 0 && a % 4 == 0;
if (b == 2) {
if (c > d[2] + ret)
return false;
}
return true;
}
// 判断是否是可能日期
// 前三个参数为枚举的日期,后三个为题目所给日期
bool isDate(int year, int month, int day, int a, int b, int c) {
year %= 100;
// 三个数按年 月 日排
int date1 = a * 10000 + b * 100 + c;
// 按日 月 年排
int date2 = c * 10000 + b * 100 + a;
// 按月 日 年排
int date3 = c * 10000 + a * 100 + b;
int date = year * 10000 + month * 100 + day;
if (date == date1 || date == date2 || date == date3)
return true;
else
return false;
}
int main () {
int a, b, c;
scanf("%d/%d/%d", &a, &b, &c);
for (int i = 19600101; i <= 20591231; i ++) {
int year = i / 10000;
int month = i % 10000 / 100;
int day = i % 100;
if (month == 0 || day == 0)
continue;
if (isTrueDate(year, month, day) && isDate(year, month, day, a, b, c))
printf("%d-%.2d-%.2d\n", year, month, day);
}
return 0;
}