摘要:
##思路 本题可以用最大流写也可以用二分图,网络流部分题目我讲究的是做出来即可。因为比赛未必会看的出来是网络流的图。先基础全过一遍再说变形题。 ##AC代码 #include<stdio.h> #include<string.h> const int N=220; //5 5 //ncows //2 阅读全文
摘要:
##AC代码 #include<stdio.h> #include<string.h> #include<iostream> #include<queue> using namespace std; #define inf 0x3f3f3f3f const int N=1020; int e[N][ 阅读全文