蓝桥杯历届试题-蚂蚁感冒-题解(Python代码) 摘要: 如图所示,其中橙色箭头的为已感染蚂蚁,称为母体。 那么它在行走过程中,比他值大的向右走的蚂蚁正…… 题解列表 2019年12月04日 0 点赞 0 评论 1359 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(C语言代码)满分代码!! 摘要: #include int main() { long long int t; scanf("%lld",&t); int h=0,m=…… 题解列表 2019年12月04日 0 点赞 0 评论 968 浏览 评分:9.9
蓝桥杯基础练习VIP-矩阵乘法-题解(Java代码) 摘要: import java.text.DecimalFormat; import java.util.Scanner; **//很多人没有AC成功可能都是忘记考虑矩阵的0次幂了** public…… 题解列表 2019年12月04日 0 点赞 0 评论 1521 浏览 评分:9.9
[搞比利]克鲁斯卡尔算法2050题-55.战争通讯-题解(C++代码) 摘要: //这题是真的丧病 //卡了我好长时间 #include using namespace std; int cost[10086];//记录花费 bool CNM[10086];…… 题解列表 2019年12月05日 0 点赞 0 评论 835 浏览 评分:9.9
蓝桥杯算法提高VIP-队列操作-题解(C语言代码) 摘要: #include #include typedef int ElementType ; typedef struct listnode { ElementType e…… 题解列表 2019年12月05日 0 点赞 0 评论 834 浏览 评分:9.9
蓝桥杯算法提高VIP-理财计划-题解(C语言代码)满分 题解!!! 摘要:####注意防止四舍五入 #####参考代码: #include int main() { double m,t,p,shouyi=0; …… 题解列表 2019年12月05日 0 点赞 0 评论 1513 浏览 评分:9.9
小九九-题解(C语言代码)满分题解!! 摘要: #include int main() { for(int i=1;i…… 题解列表 2019年12月05日 0 点赞 6 评论 3753 浏览 评分:9.9
数据结构-图的遍历——DFS深度优先搜索-题解(C语言代码) 摘要:#简单版深度优先搜索 #include #include //深度优先遍历算法 (简单版) /* run this program using the…… 题解列表 2019年12月05日 0 点赞 1 评论 1321 浏览 评分:9.9
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要:```c #include"stdio.h" int main(){ char a[100000]; int b[100000], t = 0, j = 0,x=1; gets_s…… 题解列表 2019年12月05日 0 点赞 0 评论 1422 浏览 评分:9.9
[编程入门]原码求补码-题解(C语言代码)满分题解!! 摘要:####注意讨论0的补码 #####参考代码: #include #include int main() { char x[20]; …… 题解列表 2019年12月05日 0 点赞 1 评论 1225 浏览 评分:9.9