AcWing 1073. 树的中心 树形dp 摘要:#includeusingnamespacestd;constintN=10010,M=2*N,INF=0x3f3f3f3f;inth[N],ne[M],e[M],w[M],max1[N],max2[…… 文章列表 2024年11月04日 0 点赞 0 评论 33 浏览 评分:0.0
c++猜字游戏 摘要:#include"iostream"#include"random"using namespace std;int&…… 文章列表 2024年11月03日 0 点赞 1 评论 45 浏览 评分:9.9
涂色(区间dp) 摘要:[原题].(https://www.acwing.com/problem/content/2808/"原题")#includeusingnamespacestd;intdp[100…… 文章列表 2024年10月24日 0 点赞 0 评论 18 浏览 评分:9.9
——Java知识点(常更新)———— 摘要:实例变量(方法)与类变量(方法)思维导图实例变量与类变量代码public class Main{   &…… 文章列表 2024年10月24日 0 点赞 0 评论 38 浏览 评分:9.9
【2024级新生必看】新生小白如何学好C语言--蓝桥杯C/C++国奖学长分享 摘要:新手小白如何学好C语言    学习C语言,和你是什么专业的没有关系,做智能车或者机器人,在智工坊不止有计算机、智能系的学长学姐,…… 文章列表 2024年10月19日 1 点赞 0 评论 161 浏览 评分:9.9
Road(暂存代码) 摘要:```cpp#includeusingnamespacestd;typedeflonglongll;constintN=1e5+10;lla[N],v[N];intmain(){//freopen(&…… 文章列表 2024年10月17日 0 点赞 0 评论 17 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-买瓜 摘要:#include&nbsp;<bits/stdc++.h>using&nbsp;namespace&nbsp;std;int&nbsp;n,&nbs…… 文章列表 2024年10月16日 0 点赞 0 评论 104 浏览 评分:9.9
输入一个数字N,输出1~N中所有数字及它们的因子,用空格分开,一个数及它的因子占一行 c++ 摘要:#include<bits/stdc++.h>usingnamespacestd;typedeflonglongll;intmain(){&nbsp;&nbsp;lln;&…… 文章列表 2024年10月13日 0 点赞 0 评论 27 浏览 评分:9.9
贪心算法 题目描述: 有许多木桩需要用机器处理,每个木桩有一个长度li和重量wi。给机器安装第一个木桩时需要1分钟,之后每次换木桩时,若新木桩的长度li’<=li,重量wi&rs 摘要:#include<stdio.h>intmain()&nbsp;{&nbsp;&nbsp;intT;&nbsp;&nbsp;scanf("…… 文章列表 2024年10月12日 0 点赞 0 评论 66 浏览 评分:9.9
递归算法 设R={r1,r2,…,,rn},令Ri=R-{ri}。集合X中的元素的全排列记为Perm(X),则(ri)Perm(X)表示在全排列Perm(X)的每一个排列前加上前缀ri得 摘要:#include&nbsp;<stdio.h>#include&nbsp;<string.h>void&nbsp;swap(char&nbsp;…… 文章列表 2024年10月12日 0 点赞 0 评论 38 浏览 评分:9.9