摘要: 先贴个自己的Dinic板子。 ```cpp //最大流 const int inf = 0x3f3f3f3f3f3f3f3f; struct Edge{ int from, to, cap; bool ori; Edge(int u, int v, int c, bool o){ from = u, 阅读全文
posted @ 2023-08-06 22:06 AzusidNya 阅读(77) 评论(0) 推荐(0)