1205: 字符串的修改 C++ 动态规划 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string s1; string s2; int L1,L2; …… 题解列表 2022年03月14日 0 点赞 0 评论 144 浏览 评分:0.0
最长的字符串长度减去 这两个字符串相同的字母数 摘要: public static void main(String[] args) { Scanner sr = new Scanner(System.in); String str1…… 题解列表 2022年03月21日 0 点赞 0 评论 340 浏览 评分:9.9
C++代码,01背包做法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int f[2100][2100];char a[2100],b[2100];in…… 题解列表 2022年03月21日 0 点赞 0 评论 249 浏览 评分:9.9
题解 1205: 字符串的修改 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void swap(char *a, char *b) //将两个字符串互换…… 题解列表 2022年03月21日 0 点赞 0 评论 105 浏览 评分:0.0
【鼠鼠】用两层循环ac一道中等题 摘要:1.核心思路贪心,最少步数的办法是找到相同的字符,通过删除和修改达到一致 2.比如sfdxbqw 和 gfdgw,只要把一样的留下,不一样的在第二字符串个长度之前就改,在第二个字符串之后出现的不…… 题解列表 2022年04月01日 0 点赞 0 评论 146 浏览 评分:0.0
非乱序,标记数组法 摘要:# 非乱序 **实际上, 通过保留相同元素达到最小修改次数,而修改只有增删** ```python A = input() B = input() tag = [0]*max(le…… 题解列表 2022年04月05日 0 点赞 0 评论 197 浏览 评分:0.0
字符串的修改 最少操作数=长字符串长度-最大公共子串长度 摘要:#include <stdio.h> #include <string.h> int main() { char a[1000]; char b[1000]; int k=0; …… 题解列表 2022年04月06日 0 点赞 1 评论 422 浏览 评分:9.9
字符串的修改 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int dp[1005][1005];char A[205],B[205];int …… 题解列表 2022年04月08日 0 点赞 0 评论 160 浏览 评分:9.9
字符串的修改 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define max(x,y) x>y?x:yint fun(char s1[], char s2…… 题解列表 2022年05月05日 0 点赞 0 评论 136 浏览 评分:0.0
编写题解 1205: 字符串的修改 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int n1,n2; int x=1…… 题解列表 2022年05月12日 0 点赞 0 评论 312 浏览 评分:0.0