题解列表

筛选

输入输出练习之格式控制

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

简单的动态规划

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

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

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

用vector巧解高精度问题

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

暴力做法!!!

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

1434: 蓝桥杯历届试题-回文数字——python

摘要:解题思路:直接遍历的话,运行时间较多,虽然这道题暴力也能通过。我们从数位来判断的话就简单多了。注意事项:参考代码:#高效解法# n = int(input())# p=0# for i in rang……