优质题解 python-数正方形 摘要:解题思路:找规律。参考了博客https://blog.csdn.net/qq_43319748/article/details/109655129先解释一下(i*j)的斜正方形的概念。例如上图红色正方…… 题解列表 2022年02月08日 0 点赞 0 评论 1195 浏览 评分:10.0
1476: 蓝桥杯基础练习VIP-龟兔赛跑预测 摘要:解题思路: 首先乌龟跑完全程的时间(T)是确定的,所以主要就是算出兔子跑完全程的时间(i),如果i> v1 >> v2 >> t >> s >> l; int s1 = 0,s2 = …… 题解列表 2022年02月11日 0 点赞 0 评论 218 浏览 评分:10.0
1501: 蓝桥杯算法提高VIP-分苹果(c++版)运用差分数组降低时间复杂度 摘要: :tw-2600:**解题思路:** 题目中m n数据量达是1e5限时1sec显然暴力枚举会超时,因此我们就需要使用到**差分数组**,这样可以**降低时间复杂度** **关于差分数组,如果你想…… 题解列表 2022年02月18日 0 点赞 0 评论 446 浏览 评分:10.0
P1016 (c语言) 摘要:```c #include//01背包问题变形,这里可以认为体积与价值等价,因此将分别表示物品体积及价值的数组合并为一个数组即可 int w[40]={0};//注意初始化 int a[30…… 题解列表 2022年02月18日 0 点赞 1 评论 434 浏览 评分:10.0
二分搜索-整数小拼接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>#include<cstring>…… 题解列表 2022年02月22日 0 点赞 0 评论 1502 浏览 评分:10.0
2037: 字符串比较 摘要:解题思路:用vector函数就很简单了注意事项:参考代码:#include<bits/stdc++.h> using namespace std; vector<string> x; int m…… 题解列表 2022年03月09日 0 点赞 0 评论 226 浏览 评分:10.0
优质题解 五大方法带你解决三个数最大值问题(附带任意个数最大值解决方案) 摘要:一、if嵌套语句 注意大于号和小于号。 if(表达式) 语句其语义是:如果表达式的值为真,则执行其后的语句,否则不执行该语句。 第二种形式为: if-elseif(表达式…… 题解列表 2022年03月13日 5 点赞 53 评论 29354 浏览 评分:10.0
蓝桥杯算法提高VIP-邮票面值设计 摘要:```cpp #include #include #include using namespace std; int n, k,ans; int a[15], dp[10005];//dp…… 题解列表 2022年03月28日 0 点赞 0 评论 369 浏览 评分:10.0
数据结构-字符串插入[c 语言] 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> // 字符串插入 int main(int argc, char *argv[])…… 题解列表 2022年04月05日 0 点赞 0 评论 422 浏览 评分:10.0
信息学奥赛一本通T1252-走迷宫 —— Python首发 BFS广度优先搜索 (Python代码) 摘要:##### 先上代码: ```python from queue import Queue as Qu class BFSNode(): # 节点 def __init__(sel…… 题解列表 2022年04月18日 0 点赞 2 评论 679 浏览 评分:10.0