Luogu P1129 [ZJOI2007]矩阵游戏

题目链接:传送门

1 1 1看做是行向列连边,需要使行列都有一个匹配
交换行列并不会影响这个匹配,只是点的位置变了
所以跑一个最大匹配就可以

#include 
#define A 210

using namespace std;
int T, n, g[A]; bool m[A][A], vis[A];
bool check(int x) {
	for (int i = 1; i <= n; i++)
		if (m[x][i] and !vis[i]) {
			vis[i] = 1;
			if (!g[i] or check(g[i])) {
				g[i] = x;
				return true;
			}
		}
	return false;
}

int main(int argc, char const *argv[]) {
	cin >> T;
	while (T--) {
		int ans = 0; memset(g, 0, sizeof g);
		memset(m, 0, sizeof m); cin >> n;
		for (int i = 1; i <= n; i++)
			for (int j = 1; j <= n; j++)
				scanf("%d", &m[i][j]);
		for (int i = 1; i <= n; i++) {
			memset(vis, 0, sizeof vis);
			if (check(i)) ans++;
		}
		puts(ans == n ? "Yes" : "No");
	}
	return 0;
}

你可能感兴趣的:(Luogu,网络流,最大匹配)