题解列表

筛选

1221: 数列问题(动态规划算法)

摘要:# 动态规划思想 > 题目已经给了我们递推公式`f[n] = f[n-1]+f[n-2]+f[n-3]`,所以只需要初始化前三项即可。 ```c++ #include using namesp……

LIS二分优化 + 倒序输出方案 (C++)

摘要:## 思路 找出一个子序列,并且是严格从小到大的子序列,结果需要尽可能的大,其实就是最长上升子序列的另外一种说法,读到这里题目就可以开始分析了。 从数据范围可以知道,最多有1e6个单词,用普通……

双循环遍历

摘要:# 纯纯打表 ```c++ #include #include using namespace std; char str[10000]; int f[26]; int main() ……

1049: [编程入门]结构体之时间设计

摘要:解题思路:题目主要要搞清楚什么是闰年,什么是平年,然后闰年每个月有多少天,平年每个月有多少天。注意事项:参考代码:#include <bits/stdc++.h> using namespace s……

2869: 字符串最大跨距

摘要:解题思路:注意事项:(≖͞_≖̥)参考代码:#include<iostream>#include<algorithm>#include<string.h>#include<string>using n……

动态规划(DP) 初学

摘要:初学DP,可能有很多不恰当的地方 ```cpp ```cpp #include using namespace std; int c[35]; int dp[35][20005]; in……

指针/引用练习之交换数字

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int &a,int &b){ int *p=&a,*q=&b;……

星期判断机

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    switch……