修改前
int sap(int s,int t){ bfs(s,t); int ret=0; while(dis[s]<=n){ ret+=dfs(s,t,s,inf); } return ret; }
改long long就过了
修改后