网络流
ZHXU1998
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
2019HDU杭电多校第三场 HDU 6611 K Subsequence (最小费用最大流 + dijkstra 模版(处理负边))
唉 自己 spfaT了 之后又写了份 dj的 还是T了 只能说自己写的好丑啊 一直写spfa 突然不适 以下 标程扒的 以后当模板使用了 #include<bits/stdc++.h> using namespace std; typedef pair<int, int> pii; const int maxn = 1e4; const int inf = 0x3f3...原创 2019-08-08 08:56:52 · 236 阅读 · 0 评论 -
[网络流24题] 最长不下降子序列问题
HDU 多校 第3场前置知识 I HDU 6611 K Subsequence 所有我先补了这题 #include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; const int INF = 0x3f3f3f3f; const int maxn = 1e3 + 10; int n; in...原创 2019-08-07 16:07:16 · 187 阅读 · 0 评论
分享