1221: 数列问题(动态规划算法) 摘要:# 动态规划思想 > 题目已经给了我们递推公式`f[n] = f[n-1]+f[n-2]+f[n-3]`,所以只需要初始化前三项即可。 ```c++ #include using namesp…… 题解列表 2023年05月10日 0 点赞 0 评论 215 浏览 评分:0.0
LIS二分优化 + 倒序输出方案 (C++) 摘要:## 思路 找出一个子序列,并且是严格从小到大的子序列,结果需要尽可能的大,其实就是最长上升子序列的另外一种说法,读到这里题目就可以开始分析了。 从数据范围可以知道,最多有1e6个单词,用普通…… 题解列表 2023年05月09日 1 点赞 0 评论 335 浏览 评分:10.0
双循环遍历 摘要:# 纯纯打表 ```c++ #include #include using namespace std; char str[10000]; int f[26]; int main() …… 题解列表 2023年05月09日 0 点赞 0 评论 269 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:题目主要要搞清楚什么是闰年,什么是平年,然后闰年每个月有多少天,平年每个月有多少天。注意事项:参考代码:#include <bits/stdc++.h> using namespace s…… 题解列表 2023年05月09日 0 点赞 0 评论 135 浏览 评分:0.0
2869: 字符串最大跨距 摘要:解题思路:注意事项:(≖͞_≖̥)参考代码:#include<iostream>#include<algorithm>#include<string.h>#include<string>using n…… 题解列表 2023年05月08日 0 点赞 0 评论 250 浏览 评分:9.9
编写题解 1503: 蓝桥杯算法提高VIP-前10名 摘要:```c++ #include using namespace std; void Sort(int*nums,int n) { for(int i = 0;inums[i]; …… 题解列表 2023年05月08日 0 点赞 0 评论 239 浏览 评分:0.0
动态规划(DP) 初学 摘要:初学DP,可能有很多不恰当的地方 ```cpp ```cpp #include using namespace std; int c[35]; int dp[35][20005]; in…… 题解列表 2023年05月08日 0 点赞 0 评论 209 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-冶炼金属—二分算法 摘要:解题思路:求最大值和最小值,可以考虑二分注意事项:参考代码:#include<iostream>using namespace std;long long a[10005][3],n;int chec…… 题解列表 2023年05月07日 0 点赞 0 评论 1069 浏览 评分:8.0
指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int &a,int &b){ int *p=&a,*q=&b;…… 题解列表 2023年05月07日 0 点赞 0 评论 232 浏览 评分:0.0
星期判断机 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch…… 题解列表 2023年05月07日 0 点赞 0 评论 171 浏览 评分:0.0