kevin231
kevin231
全部文章
题解
归档
标签
去牛客网
登录
/
注册
kevin231的博客
全部文章
/ 题解
(共4篇)
题解 | #Head of a Gang#
并查集 建图 得到并查集 遍历帮派,通过 vecter 记录信息 遍历帮派成员 输出 #include <iostream> #include <string> #include <vector> using namespace std; const in...
C++
2022-05-12
0
381
题解 | #找出直系亲属#
邻接表 + dfs #include<iostream> #include<cstring> using namespace std; const int N = 30; int idx, h[N], e[N], ne[N]; int dfs(int x, int y...
C++
2022-05-12
0
351
题解 | #代理服务器#
贪心 #include<iostream> #include<vector> #include <string> #include <algorithm> using namespace std; vector<string> a, b...
C++
2022-05-11
3
279
题解 | #字符串匹配#
kmp 算法 + 递归算法 #include <iostream> #include <vector> #include <string> using namespace std; const int N = 1005; int n; string str[N]...
C++
2022-05-04
0
330