2571: 蓝桥杯2020年第十一届省赛真题-回文日期 摘要:**部分正确的话,可能要注意到的一些暗含条件:** 1.‘ABABBABA’型回文串中A与B不能相等 2.输出日期必须大于输入日期 ```cpp #include #include u…… 题解列表 2024年04月08日 0 点赞 0 评论 123 浏览 评分:0.0
回文日期(c++) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ char arr[8]; scanf("…… 题解列表 2023年07月08日 0 点赞 0 评论 126 浏览 评分:0.0
枚举法,简单暴力好理解(小白题解) 摘要:解题思路:枚举每一天判断这一天是否符合要求注意事项:10000101 ≤ N ≤ 89991231我们的判断就得是八位数的最大 年份最大为9999参考代码:#include<bits/stdc++.h…… 题解列表 2023年04月05日 0 点赞 0 评论 240 浏览 评分:9.0
这个提示还不如不给. 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define No 0int main(){ int N,i1,i2; int a…… 题解列表 2023年03月11日 0 点赞 0 评论 89 浏览 评分:0.0
比较完善的算法 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;bool ifhuiwen(int s[],int n){ //s从下标1开始,n表示长度 …… 题解列表 2022年09月27日 0 点赞 0 评论 115 浏览 评分:0.0
#C++2571——蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:用日期遍历会超时,由于回文的特殊性,可以根据年份构造month和day;注意事项:(注意判断构造的日期是否合法);参考代码:#include <iostream> using namesp…… 题解列表 2022年07月23日 0 点赞 0 评论 165 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-回文日期 摘要:# MarkDown编辑器基本使用说明 ``` #include using namespace std; const int N=1010; typedef long long ll;…… 题解列表 2022年04月07日 0 点赞 0 评论 212 浏览 评分:0.0
题目 2571: 蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:首先保证回文,回文的格式ABCDDCBA是比较简单的方式就是对四位数字放在前四位,反转的数放在后四位,就可以实现回文;特殊回文:ABABBABA,可以理解为有一个两位数,放在最高两位和次高两…… 题解列表 2022年04月03日 0 点赞 0 评论 842 浏览 评分:9.9
最简单解法【C++】 摘要:```cpp #include using namespace std; int uu; bool check(int year, int month, int day){ …… 题解列表 2022年03月25日 0 点赞 1 评论 225 浏览 评分:4.7
c++ 常规解法 摘要:解题思路:因为是回文 只用考虑年份即可 且一年只有一个数先求出年份 然后根据年份判断月份是否满足要求 判断日期是否符合要求 如果符合就是回文日期注意事项:求得是当前日期之后的,不用考虑前面的日期。注意…… 题解列表 2022年03月19日 0 点赞 0 评论 229 浏览 评分:0.0