摘要:
水背包。。。做道水题。。。不解释。。。//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 阅读全文