摘要: floyd搞出两点间最短距离 二分判答案 // luogu-judger-enable-o2 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int MAXN = 1050; const int MAX 阅读全文
posted @ 2019-04-12 22:13 Aragaki 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 二分图最小不相交路径覆盖 #include<bits/stdc++.h> using namespace std; const int MAXN = 5550; const int MAXM = 1000005; const int INF = 1000000050; int Head[MAXN], 阅读全文
posted @ 2019-04-12 11:18 Aragaki 阅读(154) 评论(0) 推荐(0) 编辑