题面 题面 题解 这题不是很难,因为删代价的次数不多,因此我们只需要将最短路中的状态加一维表示已经删了几次,再转移即可 #include<bits/stdc++.h> using namespace std; #define R register int #define AC 11000 #define ac 130000 int n, m, k, s, t, ans = 1000000000; int Head[AC], date[ac], Next[ac], len[ac], tot; i…