Coming680
Coming680
全部文章
分类
题解(105)
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
(共105篇)
题解 | #【模板】单源最短路1#
#include<iostream> #include<queue> #include<map> #include<vector> #include<algorithm> using namespace std; map<...
C++
2022-05-06
5
702
题解 | #最大连续子序列#
#include<iostream> #include<vector> using namespace std; int main() { int k,val,sum,ans,ans_s,ans_e,temps,tempe; vector<int>vec; ...
C++
动态规划
数组
2022-03-28
0
437
题解 | #Freckles#
#include<iostream> #include<vector> #include<cmath> #include<algorithm> #include<queue> using namespace std; struct cmp{...
C++
并查集
2022-03-28
0
381
题解 | #Head of a Gang#
这题,麻烦的并查集问题,虽然能过,但代码又臭又长。。。 #include<iostream> #include<set> #include<map> #include<vector> #include<unordered_map> usin...
C++
并查集
深度优先搜索
集合
2022-03-27
0
444
题解 | #畅通工程#
#include<iostream> #include<map> #include<vector> using namespace std; map<int,int> visited; void dfs(map<int,vector<int...
C++
深度优先搜索
dfs
并查集
2022-03-27
0
507
题解 | #子串计算#
#include<iostream> #include<map> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); string str; wh...
C++
枚举
哈希表
2022-03-26
0
414
题解 | #二叉树遍历#
按照先序建立二叉树即可,然后再按照中序输出。 #include<iostream> using namespace std; typedef struct node{ char val; struct node *left,*right; }*TreeNode,Node;...
C++
二叉树
2022-03-26
1
385
题解 | #字符串排序#
#include<iostream> #include<vector> #include<algorithm> #include<cstdio> using namespace std; int main() { int n; stri...
C++
字符串
2022-03-25
2
560
题解 | #鸡兔同笼#
只需注意奇数与偶数即可 #include<iostream> using namespace std; int main() { int n; while(cin >> n){ if(n % 2 != 0) cout &...
C++
数学
2022-03-25
0
412
题解 | #N的阶乘#
大整数乘法,这无脑了 #include<iostream> #include<algorithm> #include<string> #include<vector> using namespace std; string cal(string num...
C++
模拟
2022-03-25
0
389
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页