畅通工程-题解(C++代码)并查集 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年07月30日 0 点赞 0 评论 1047 浏览 评分:9.9
用筛法求之N内的素数。 -题解(C++代码)埃式筛 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年07月31日 0 点赞 0 评论 1356 浏览 评分:9.9
优质题解 求阶梯水费-题解(C++代码) 摘要:#### 原题链接:[求阶梯水费](https://www.dotcpp.com/oj/problem.php?id=1980 "求阶梯水费") #### 解题思路: **1、关系式很简单…… 题解列表 2019年07月31日 0 点赞 0 评论 1926 浏览 评分:9.9
DNA-题解(C++代码) Sun 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年07月31日 0 点赞 0 评论 1054 浏览 评分:9.9
优质题解 不容易系列2-题解(C++代码)【递归算法 & 错排公式秒杀】 摘要:#浅谈错排公式 ## 错排公式定义 一段序列中一共有n个元素,那么可知这些元素一共有n!种排列方法。假如在进行排列时,原来所有的元素都不在原来的位置,那么称这个排列为错排。而错排数所指的就是在一段…… 题解列表 2019年08月01日 0 点赞 0 评论 2186 浏览 评分:9.9
【明明的随机数】-题解(C++代码) 摘要:#### 原题链接:[【明明的随机数】](https://www.dotcpp.com/oj/problem1165.html "【明明的随机数】") #### 解题思路: **1、先排序…… 题解列表 2019年08月01日 0 点赞 0 评论 987 浏览 评分:9.9
蓝桥杯算法提高VIP-计算时间-题解(C语言代码) 摘要:```c #include int main() { int n; int time,h,m,s; scanf("%d",&n); while(n--) { h=…… 题解列表 2019年08月01日 0 点赞 0 评论 626 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C++代码) 摘要: #include #include using namespace std; int p(int n) { int a=0; f…… 题解列表 2019年08月03日 0 点赞 0 评论 926 浏览 评分:9.9
[编程入门]求和训练-题解(C++代码) 摘要: #include #include using namespace std; int main() { float a,…… 题解列表 2019年08月03日 0 点赞 0 评论 684 浏览 评分:9.9
[编程入门]猴子吃桃的问题-题解(C++代码) 摘要: #include using namespace std; int main() { int N,M=1,sum=1; cin>>N; …… 题解列表 2019年08月03日 0 点赞 0 评论 820 浏览 评分:9.9