题解列表
编写题解 2002: 计算数字个数(Python)
摘要:解题思路:题解一:通过遍历字符串判断字符是否为数字参考代码:n=input()
s1=0
for i in n:
if i.isdigit():
s1+=1
prin……
计负均正 使用C++语言编写 代码可能不是最简洁的 但是通俗易懂 容易理解 适合入门的 欢迎大家一起讨论
摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;int main() { const int n ……
3061: 公共子序列-动态规划
摘要: #include
#include
#include
using namespace std;
int dp[205][205];
int m……
题目 1177: 三角形(动态规划)
摘要:解题思路:题目可能有问题,每一步只能由当前位置向左下或右下,而是每一步只能由当前位置向正下下或右下。注意事项:因此可以写出动态规划的函数:dp[i][j] = max(dp[i-1][j-1],dp[……
最长不下降子序列的长度
摘要:解题思路:注意事项:参考代码:def lengthOfLIS(nums): if len(nums) <= 1: return len(nums) dp =……
编写题解 2788: 晶晶赴约会python
摘要:解题思路:注意事项:参考代码:n = int(input())
if n <= 5:
if n % 2 == 0:
print("YES")
else:
 
最长公共子序列lcs
摘要:解题思路:注意事项:参考代码:def longestCommonSubsequence(text1, text2): # 创建一个二维数组 dp,用于存储最长公共子序列的长度 ……