【ZOJ 1654】Place the Robots(網路流)
阿新 • • 發佈:2022-03-31
Place the Robots
題目連結:ZOJ 1654
題目大意
給你一個網格圖,然後有牆、空地和草地。
你可以放點在空地上,然後你要保證一個點它同一行同一列上的別的點都有一個牆隔開。
然後問你最多能放多少個點。
思路
首先不難想到這麼一種做法:
直接看每個空地放點,如果兩個空地不能都放點,就連邊,然後跑最大獨立集。
但是你會發現它不一定能弄成二分圖,那一般圖的最大獨立集是 NP-Hard 不太行。
然後你考慮換一個方法,從網格圖入手。
然後你會發現因為是一行一列,那我們可以把每行每列由牆分開的塊都找出來。
那這些塊每個至多放一個點,畢竟放了別的都不能放。
那你會發現行之間,列之間沒有關係,所以它就變成了一個二分圖!
那你考慮這些行列之間會怎樣。
你可以考慮用一個邊代表一個空地放一個點:這個點要放你就要連這個邊,讓這兩個塊都不能再放了。
然後跑最大匹配就是答案了。
程式碼
#include<queue> #include<cstdio> #include<iostream> #define INF 0x3f3f3f3f3f3f3f3f using namespace std; const int N = 50 + 5; const int M = N * N + 100; int n, m, npl[M << 1], nl[M << 1], nr[M << 1]; struct node { int x, to, nxt, op; }e[(M * M) << 1]; int le[M << 1], KK, S, T, tot; int lee[M << 1], deg[M << 1]; char a[N][N]; //網路流模板 void add(int x, int y, int z) { e[++KK] = (node){z, y, le[x], KK + 1}; le[x] = KK; e[++KK] = (node){0, x, le[y], KK - 1}; le[y] = KK; } bool bfs() { for (int i = 1; i <= tot; i++) lee[i] = le[i], deg[i] = 0; queue <int> q; q.push(S); deg[S] = 1; while (!q.empty()) { int now = q.front(); q.pop(); for (int i = le[now]; i; i = e[i].nxt) if (e[i].x && !deg[e[i].to]) { deg[e[i].to] = deg[now] + 1; if (e[i].to == T) return 1; q.push(e[i].to); } } return 0; } int dfs(int now, int sum) { if (now == T) return sum; int go = 0; for (int &i = lee[now]; i; i = e[i].nxt) if (e[i].x && deg[e[i].to] == deg[now] + 1) { int this_go = dfs(e[i].to, min(sum - go, e[i].x)); if (this_go) { e[i].x -= this_go; e[e[i].op].x += this_go; go += this_go; if (go == sum) return go; } } if (go != sum) deg[now] = -1; return go; } int dinic() { int re = 0; while (bfs()) re += dfs(S, INF); return re; } int main() { int TT; scanf("%d", &TT); for (int qq = 1; qq <= TT; qq++) { scanf("%d %d", &n, &m);//讀入 for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) { a[i][j] = getchar(); while (a[i][j] != '#' && a[i][j] != '*' && a[i][j] != 'o') a[i][j] = getchar(); } tot = 0; int nn = 0, mm = 0;//先看列的 for (int i = 1; i <= n; i++) { for (int L = 1, R; L <= m; L = R + 1) { R = L; if (a[i][L] == '#') continue; bool kong = (a[i][L] == 'o'); while (R < m && a[i][R + 1] != '#') R++, kong |= (a[i][R] == 'o');//找沒有牆的一段 if (kong) {//要有空地 nn++; tot++; npl[tot] = i; nl[tot] = L; nr[tot] = R; } } } for (int i = 1; i <= m; i++) {//行的 for (int L = 1, R; L <= n; L = R + 1) { R = L; if (a[L][i] == '#') continue; bool kong = (a[L][i] == 'o'); while (R < n && a[R + 1][i] != '#') R++, kong |= (a[R][i] == 'o');//跟上面同理 if (kong) { mm++; tot++; npl[tot] = i; nl[tot] = L; nr[tot] = R; } } } //然後列舉行和列找有交的連邊 for (int i = 1; i <= nn; i++) for (int j = 1; j <= mm; j++) { if (nl[i] <= npl[nn + j] && npl[nn + j] <= nr[i]) if (nl[nn + j] <= npl[i] && npl[i] <= nr[nn + j])//判斷是否有交 if (a[npl[i]][npl[nn + j]] == 'o')//判斷交點是否是空地 add(i, nn + j, 1); } S = ++tot; T = ++tot; for (int i = 1; i <= nn; i++) add(S, i, 1); for (int i = 1; i <= mm; i++) add(nn + i, T, 1); printf("Case :%d\n%d\n", qq, dinic()); for (int i = 1; i <= tot; i++) le[i] = 0; KK = 0;//清空 } return 0; }