这道题可以暴力哒~ 我们枚举每一个出现过的容量,然后跑一次最短路,求延迟,在跑最短路的时候,如果遇到的某一个点,比我们当前枚举的那个点小,那么就直接不走这一个点,然后枚举完后,就能得到最大值了. 代码~ #include <bits/stdc++.h> using namespace std; struct node{ int w , v; }; int n , m , need , ans = 0x3fffffff; int h[510] , vis[510] , dis[510]; vec…