发工资咯-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ int n,str[105]; int v[6]…… 题解列表 2020年04月11日 0 点赞 0 评论 797 浏览 评分:6.9
数据结构-Dijskra(迪杰斯特拉)最短路径算法-题解(C++代码) 完全是模仿手工算的时候的做法,尽管有些麻烦,但是实现了啊!! 摘要:把我的代码中的注释打开,就可以看到过程了 ```cpp #include using namespace std; int main(){ int m,n;//m是有多少个顶点,n…… 题解列表 2020年04月11日 0 点赞 0 评论 1073 浏览 评分:9.9
[传智杯]众数出现的次数-题解(C++代码) 摘要: ## 一道很唬人的题目 **本来以为是动态规划没想出来,比赛完才发现就是一个简单的模拟 仔细思考可以发现,每个人可以分成两种情况讨论: 这里假设a为ai ,b为ai^bi 情况1:a …… 题解列表 2020年04月11日 0 点赞 0 评论 1147 浏览 评分:0.0
K-进制数-题解(C++代码) 摘要:1、大佬的优秀代码 感觉有点像是递归的思想 链接:[https://blog.dotcpp.com/a/56751](https://blog.dotcpp.com/a/56751) ```…… 题解列表 2020年04月11日 0 点赞 0 评论 703 浏览 评分:0.0
[传智杯]众数出现的次数-题解(C++代码) -- 简简单单的map运用 摘要:第一次发题解,有哪里错的,请大佬们多多指教 ```cpp #include #include using namespace std; int main() { int n,a,b; …… 题解列表 2020年04月11日 0 点赞 2 评论 490 浏览 评分:8.7
[编程入门]三个字符串的排序-题解(C语言代码) 摘要:```c #include #include #define zz 100 int main(){ char a[zz],b[zz],c[zz]; char z[zz]; gets…… 题解列表 2020年04月11日 0 点赞 0 评论 651 浏览 评分:0.0
蓝桥杯2013年第四届真题-买不到的数目-题解(C语言代码) 摘要:1、参照题解-动态规划 感觉还是递归 最近看啥啥是递归 心累 ```cpp #include using namespace std; const int maxn=100005; …… 题解列表 2020年04月11日 0 点赞 0 评论 671 浏览 评分:0.0
[传智杯]程序员节发橙子-题解(C语言代码)贪心 摘要:看了多种解题,借鉴了该作者的思路: 作者: saudade 发表时间:2020-04-11 20:21:51 思路就是: 第一个人的橘子数是1 如果局部成绩从第m个人到…… 题解列表 2020年04月12日 0 点赞 1 评论 1050 浏览 评分:9.9
[传智杯]众数出现的次数-题解(Java代码) 摘要:``` 这几道题里唯一会写的,太难了我 java public static void main(String[] args) { Scanner scanner=new Scanner(…… 题解列表 2020年04月12日 0 点赞 0 评论 1141 浏览 评分:9.9
JakeLin-2313题-[传智杯]软件工程实习-题解(C++代码)-结构体排序 摘要:结构体排序,挺坑的,AC代码如下: ````cpp #include #include #include #include #include #include using namesp…… 题解列表 2020年04月12日 0 点赞 0 评论 1179 浏览 评分:9.9