题意 在一个有向图当中,现在每一条边带有一个容量,现在有K个人在起点,需要到终点去吃饭,询问这K个人最后一个人到达食堂的最小时间是多少 贴一篇题解:http://blog.csdn.net/u013761036/article/details/38268335 代码 #include <bits/stdc++.h> #define MAXN 5005 #define MAXM 100010 #define inf 0x7f7f7f7f using namespace std; struct E…