python-巧克力 摘要:解题思路:python代码超时,思路上感觉没什么问题,可能是python的运行效率太慢了。假设每个品种的巧克力用cho[i]表示,cho[i][0]代表价格,cho[i][1]代表剩余保质期天数,ch…… 文章列表 2022年02月12日 0 点赞 0 评论 319 浏览 评分:9.9
精品文章 人工智能之猫狗分类优化(英文版) 摘要:为了提高我的英文水平,接下来的文章将采用英文论述 ###Context To get higher accuracy,We always use plenty images to train th…… 文章列表 2022年02月12日 0 点赞 0 评论 314 浏览 评分:9.9
连接两个字符串的源代码(指针操作) 摘要:#include<stdio.h>#include<string.h>void stick(char* p1, char* p2, int n1, int n2);int main(){ char s…… 文章列表 2022年02月12日 0 点赞 0 评论 151 浏览 评分:9.9
字符串翻转 摘要:#include<stdio.h>#include<string.h>void rotate(char *p,int len);int main(){ char str[1000]; char* p …… 文章列表 2022年02月12日 0 点赞 0 评论 202 浏览 评分:9.9
三阶矩阵转置,n阶同理 摘要:#include<stdio.h> void transpose(int(*p)[3]); int main() { int arr[3][3]; int(*p)[3] = arr; …… 文章列表 2022年02月12日 0 点赞 0 评论 289 浏览 评分:9.9
判断素数(效率翻倍) 摘要:#include<stdio.h>#include<math.h>void prime(int num);int main(){ int num; scanf("%d", &num); prime(n…… 文章列表 2022年02月12日 0 点赞 0 评论 177 浏览 评分:9.9
python-网络分析 摘要:解题思路:并查集(秩+路径压缩)用python运行依然超时,70分。注意事项:参考代码:def find(x): global fa if x == fa[x]: …… 文章列表 2022年02月11日 0 点赞 0 评论 132 浏览 评分:0.0
python-左孩子右兄弟 摘要:解题思路:参考博客:https://blog.csdn.net/qq_52652816/article/details/122333311具体思路可以参考上面连接。我用python分别写了递归的解法和…… 文章列表 2022年02月11日 0 点赞 0 评论 328 浏览 评分:9.9
三体攻击(蓝桥杯省赛2018C/C++A组第七题) 前缀和与差分优化 摘要:题目:题目描述:略输入输出样例示例输入2 2 2 31 1 1 1 1 1 1 11 2 1 2 1 1 11 1 1 2 1 2 11 1 1 1 1 1 2输出2思路:前置知识:**[前缀和与差分…… 文章列表 2022年02月09日 0 点赞 0 评论 195 浏览 评分:0.0
2564-解谜游戏 摘要:解题思路:仅记录一下自己的思路,并没有通过,以便后期再进行更改。参考代码:def Lspin(Out,Mid,In): #左旋 Out = Out + [Out[0]] …… 文章列表 2022年02月08日 0 点赞 0 评论 102 浏览 评分:0.0