1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
| #include<bits/stdc++.h> #define re register typedef long long ll; template<class T> inline void read(T &x) { x=0; char ch=getchar(),t=0; while(ch<'0'||ch>'9') t|=ch=='-',ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); if(t) x=-x; } template<class T,class ...T1> inline void read(T &x,T1 &...x1) { read(x),read(x1...); } template<class T> inline void write(T x) { if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); } template<> inline void write(char c) { putchar(c); } template<> inline void write(char *s) { while(*s) putchar(*s++); } template<class T,class ...T1> inline void write(T x,T1 ...x1) { write(x),write(x1...); } template<class T> inline bool checkMax(T &x,T y) { return x<y?x=y,1:0; } template<class T> inline bool checkMin(T &x,T y) { return x>y?x=y,1:0; } const int MAXN=4e4+10,MAXM=2e5+10; const int INF=0x3f3f3f3f; int N,M,S,T; struct Net { int next,to,val; }Edge[MAXM<<1]; int Head[MAXN],Cur[MAXN],Total=1; inline void addEdge(int u,int v,int w) { Edge[++Total]=(Net){Head[u],v,w};Head[u]=Total; Edge[++Total]=(Net){Head[v],u,0};Head[v]=Total; } int A,B,C; int Fl[MAXN]; inline bool Bfs() { memset(Fl,-1,sizeof(Fl)); std::queue<int>Q; Q.push(S),Cur[S]=Head[S],Fl[S]=0; while(!Q.empty()) { int u=Q.front();Q.pop(); for(int e=Head[u],v;e;e=Edge[e].next) { v=Edge[e].to; if(Fl[v]==-1&&Edge[e].val) { Fl[v]=Fl[u]+1; Cur[v]=Head[v]; if(v==T) return 1; Q.push(v); } } } return 0; } int Dfs(int x,int inf) { if(x==T) return inf; int flow=0; for(int e=Cur[x],v;e&&flow<inf;e=Edge[e].next) { Cur[x]=e,v=Edge[e].to; if(Fl[v]==Fl[x]+1&&Edge[e].val) { int k=Dfs(v,std::min(Edge[e].val,inf-flow)); if(!k) Fl[v]=-1; Edge[e].val-=k,Edge[e^1].val+=k,flow+=k; } } return flow; } inline int Dinic() { int r=0,flow; while(Bfs()) while(flow=Dfs(S,INF)) r+=flow; return r; } int main() { read(A,B,C); read(M);S=0,T=A+A+B+C+1; for(int i=1,u,v;i<=M;++i) { read(u,v); addEdge(u+A+C,v+A+A+C,1); } read(M); for(int i=1,u,v;i<=M;++i) { read(u,v); addEdge(v,u+C,1); } for(int i=1;i<=A;++i) addEdge(i+C,i+A+C,1); for(int i=1;i<=B;++i) addEdge(i+A+A+C,T,1); for(int i=1;i<=C;++i) addEdge(S,i,1); write(Dinic()); return 0; }
|