摘要:        
水背包。。。做道水题。。。不解释。。。//By YY_More#include<cstdio>#include<cstring>struct edge{	int point;	edge *next;};	int N,M,a,b,V[201],F[201][210];edge *g[201];	void insert(int fa,int so,int data){	edge *p=new edge;	(*p).point=so;	(*p).next=g[fa];	g[fa]=p;	V[so]=data;};	void dp(int x){	F[x][0]=0;	edge    阅读全文
        
            posted @ 2011-07-04 18:02
YY_More
阅读(273)
评论(0)
推荐(0)
        
    
                    
                
浙公网安备 33010602011771号