Chri_K

2020年11月6日

拓扑排序

摘要: #include <iostream> #include <vector> #include <cstring> using namespace std; const int N=1e5+5; int h[N], e[N], ne[N], indegree[N], idx; int head, ta 阅读全文

posted @ 2020-11-06 10:59 Chri_K 阅读(87) 评论(0) 推荐(0) 编辑
kruskal(最小生成树)

摘要: #include<iostream> #include<cstring> #include<algorithm> using namespace std; const int N = 100010, M = 200010, INF = 0x3f3f3f3f; int n, m; int p[N]; 阅读全文

posted @ 2020-11-06 10:55 Chri_K 阅读(78) 评论(0) 推荐(0) 编辑