coder+9
coder+9
全部文章
分类
日志(4)
未归档(12)
读书笔记(2)
题解(36)
归档
标签
去牛客网
登录
/
注册
coder+9的博客
努力进阶中,当前未能恐怖如斯
全部文章
(共53篇)
题解 | #列一列#
哈哈 这道题好离谱啊 正常读入长整形是不行滴! ">#include<set> #include<map> using namespace std; typedef long long ll; const int N =1e5; map<ll,int> m; ll...
2021-12-12
3
680
题解 | #简单的数据结构#
学习一种新的STL 双向队列 头文件是#include ">#include<set> #include<deque> #include<algorithm> using namespace std; int n,a[100010],m; deque<int...
2021-12-12
0
464
学习数据结构和算法第一天
学习数据结构和算法第一天 今天将蓝桥杯第十二届的题看了大半 今天将数据结构的Dijkstra算法进行了浏览 记在在脑子里,就不写出来了 还看了B站的蓝桥杯培训,感觉不是特别有收获。 明天继续试着去看看哈夫曼树吧 都忘了 校内选拔赛考到了
2021-12-11
0
389
蓝桥杯第十二届 试题E 路径
记录蓝桥杯第十二届最后一道填空题,其实还蛮简单的 用了Dijkstra算法求最短路径 题在里面 https://blog.csdn.net/qq_44577309/article/details/115834519 ">#include<bits/stdc++.h> #include&l...
2021-12-11
0
604
蓝桥杯 第十一届 回文日期
">#include<bits/stdc++.h> #include<algorithm> #include<cmath> #include<cstring> #include<string> using namespace std; ty...
2021-12-10
0
421
题解 | #选择困难症#
我只想到了朴素方法,膜拜楼下大佬的剪枝思路,蛮快的。 if(res>m){ ll re=1; for(int j = i;j<k;j++){ re*=(asize[j]+1);//注意加上没有拿该物品的情况 } ...
2021-12-09
1
441
题解 | #牛牛的星际旅行#
注意本题的限制条件 重点 而且假如某件衣服是在第x天穿的,那么下一次最早能穿这件衣服的时期为x+N-1 这个侧面显示了第一周后穿的衣服如果在最后一周提前穿 至少要经历 (后穿的下标-提前穿的小标) week ">using namespace std; int n,r,m = 0; int a[...
2021-12-08
1
396
题解 | #牛牛家的房子#
太弱了 起初看不懂题目 看了上交的题解里才明白 代码也算是仿照大佬写的。 ">using namespace std; int n,r; int a[30][30]; int num[40][40]; void check(int x,int y){ int xx=x,yy=y; ...
2021-12-08
1
471
题解 | #牛兄牛弟#
16行的判断条件 注意是在答案数组进行判断, 我好傻 看了好久 才知道是ans[j]-m 而不是a[j]-m ">#include<algorithm> using namespace std; const int N =1e6+7; int n,m; int a[1010]; ...
2021-12-08
0
448
题解 | #数芝麻#
很奇怪的题 每次出错在dfs里面,离谱 看了题解 觉得自己没错 写的代码对的 很夸张 提交了4页半 离谱 不是很理解为什么要一定sum==m >=m就不行 ">#include<cstring> #include<cmath> using namespace ...
2021-12-06
0
476
首页
上一页
1
2
3
4
5
6
下一页
末页