首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
p3376专题
P3376 【模板】网络最大流(dinic模板)
因为牛客第一场,被迫学习网络流。 代码是《进阶指南》上的模板代码 #include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<vector>#include<queue>using namespace std;typedef long long ll;const int inf =
阅读更多...