赛国赛专题

【蓝桥杯】第十四届蓝桥杯大赛软件赛国赛C/C++ 大学 B 组

答题结果页 - 蓝桥云课 (lanqiao.cn) 0子2023 - 蓝桥云课 (lanqiao.cn)(暴力枚举 #include<bits/stdc++.h>using ll=long long;using ull=unsigned long long;#define fir first#define sec second//#define int llconst int N

第十四届蓝桥杯大赛软件赛国赛C/C++ 大学 B 组 拼数字

//bfs只能过40%。 #include<bits/stdc++.h>using namespace std;#define int long long int a,b,c,dp[2028];struct s {int x,y,z;string m;};map<vector<int>,int>k;signed main(){ios::sync_with_stdio(fal

第十四届蓝桥杯大赛软件赛国赛C/C++ 大学 B 组(部分题解)

文章目录 1 子2023思路:代码: 2 双子数思路:代码: 3 班级活动思路:代码: 4 合并数列思路:代码: 5 数三角思路:代码: 7 AB路线思路:代码: 8 抓娃娃思路:代码: 1 子2023 思路: 比较基础的线性dp 代码: #include<bits/stdc++.h>using namespace std;#define IOS ios::sync

【蓝桥杯备赛国赛】5-5

文章目录 求阶乘双子数 求阶乘 求阶乘 分析k的范围,10的18次方。这个数字很大 想要末尾有0的存在必须要2和5,但是通过分析2的数目应该是远远多于5的,所以只要5的数目够多即可。所以for循环的层次也是10的九次方以上,必然会超时,想到了用二分法来解决。 如何计算N的阶乘包含多少个5呢? public static long solve(long n){//