摘要:
一、图论(1)、网络流SAP#include<iostream>#define INF 100000using namespace std;struct node{ int y,d; node *next,*op;};static int n,m,tot=0,ans=0,s,t,sum=0;static node *link[1000],e[9000];static int h[1000],num[1000];void add(int x,int y,int d){ tot++; e[tot].y=y; e[tot].d=d; e[tot... 阅读全文
posted @ 2012-02-02 12:19
procedure2012
阅读(266)
评论(0)
推荐(0)
浙公网安备 33010602011771号