解析: 对于英雄跑一边二分图匹配,记录res1 再跑一边二分图匹配,记录res2 答案即为res1min(k,res2)
#include<bits/stdc.h>
using namespace std;
int n,m,k;
int g[510][510],match[510],st[510];
b…
vevtor 是c 中自带得动态数组,dynamic array array can hold different values/objects of same type 可以装不同得类型或者对象 dynamic size can be changed at runtime 可以运行得时候改变
要使用的话,先引入 #include <vector> std::vector…