题解列表

筛选

暴力做法!!!

摘要:```cpp #include using namespace std; int n, m, ans = 0; const int N = 40; //行号和列号都是偶数不能步入当前……

用vector巧解高精度问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include <vector> using namespace std;vector<int> add(vector <int> ……

1620: 蓝桥杯算法训练VIP-字符串的展开

摘要:step1:先找出有几个'-' strp2:设置初始指针sta=0,while循环一个一个'-'判断,每次循环从sta开始遍历,若找到'-'(只要找到一次'-',处理完后面的步骤就推出循环),更新s……

简单的动态规划

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int dp[40][40] = {0};    int n,m……

输入输出练习之格式控制

摘要:解题思路:注意事项:左对齐八个字符要用‘-8’来表示,同理其他也一样。参考代码:#include<stdio.h>int main(){    int a,b,c; scanf("%d%d%d",&a……

python-乘积最大

摘要:解题思路:递归搜索。假设字符串长度为n,下标从0开始。则我们可以在第0~n-2位数后面放”ד号。接下来遍历所有符合条件的位置,每个位置有两种情况,放和不放。求出所有符合条件的结果,即可求出答案。具体……

字符串数组做法

摘要:#include<stdio.h>#include<string.h>int main(){    char a[1000];    char b[1000];    char c[1000];   ……