Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- backtracking
- scc
- ArticulationPoint
- BinarySearch
- ShortestPath
- Bellman-Ford
- topologicalsort
- Bridge
- Tree
- BFS
- SlidingWindow
- Flow
- Union-Find
- DP
- KMP
- Math
- FenwickTree
- IndexedTree
- LIS
- mergesorttree
- Implementation
- DFS
- TwoPointers
- Floyd
- MST
- greedy
- 2-sat
- LCA
- Sweeping
- Dijkstra
Archives
- Today
- Total
정리충의 정리노트
[백준] 11495: 격자 0 만들기 본문
0. 문제 주소
https://www.acmicpc.net/problem/11495
1. 풀이
flow가 어려운 이유는 모델링이 문제 풀이의 90%를 넘게 차지하는데 그걸 하기가 어렵기 때문인 것 같다......ㅠㅠㅠㅠ
격자 구조에서 인접한 두 칸의 상호작용에 대한 문제는, 격자를 체스판 무늬로 생각하고 정점을 두 그룹으로 나누어
모델링을 해주는 아이디어가 용이함을 배웠다.
이렇게 정점을 두 그룹으로 나누고,
이렇게 모델링을 해주면 된다.
이 때 source에서 주황색, 파란색에서 sink를 잇는 간선의 용량은 각각 노드에 적혀있던 숫자로,
주황색에서 파란색으로 가는 간선의 용량은 INF로 해주면 된다.
여기서 S에서 D로 유량을 1 흘린다는 것은 그 사이에 지났던 두 개의 정점에 각각 1을 빼준 것과 동일하다.
따라서 최대 유량을 f라고 하면, 일단 f번 연산을 한 뒤, 연산을 진행하고 격자에 남아있는 수들의 합만큼 연산을 추가적으로 해주면 된다.
2. 풀이 코드
* 유의할 점
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <cstring>
const int MAX = 52;
const int S = 2501;
const int E = 2502;
const int INF = 987654321;
using namespace std;
int T, N, M, all;
int grid[MAX][MAX];
int di[] = {-1, 1, 0, 0};
int dj[] = {0, 0, -1, 1};
int c[MAX*MAX][MAX*MAX], f[MAX*MAX][MAX*MAX];
int convert(int i, int j) {
return (i*M+j);
}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
scanf("%d", &T);
while(T--){
scanf("%d %d", &N, &M);
all = 0;
memset(grid, 0, sizeof(grid));
memset(c, 0, sizeof(c));
memset(f, 0, sizeof(f));
vector<int> graph[MAX*MAX];
for (int i=0;i<N;i++){
for (int j=0;j<M;j++){
scanf("%d", &grid[i][j]);
all += grid[i][j];
}
}
for (int i=0;i<N;i++){
for (int j=0;j<M;j++){
int node = convert(i, j);
if (i%2 == 0){
if (j%2==0){
graph[S].push_back(node);
graph[node].push_back(S);
c[S][node] = grid[i][j];
}
else {
graph[node].push_back(E);
graph[E].push_back(node);
c[node][E] = grid[i][j];
}
}
else{
if (j%2 == 0){
graph[node].push_back(E);
graph[E].push_back(node);
c[node][E] = grid[i][j];
}
else{
graph[S].push_back(node);
graph[node].push_back(S);
c[S][node] = grid[i][j];
}
}
for (int d=0;d<4;d++){
int ni = i+di[d], nj = j+dj[d];
if (ni<0 || ni >= N || nj < 0 || nj >= M) continue;
int next = convert(ni, nj);
graph[node].push_back(next);
if (i%2 == 0 && j%2 == 1) continue;
if (i%2 == 1 && j%2 == 0) continue;
c[node][next] = INF;
}
}
}
int total = 0;
while(1){
int pre[MAX*MAX];
memset(pre, -1, sizeof(pre));
queue<int> Q;
Q.push(S);
while(!Q.empty() && pre[E] == -1){
int curr = Q.front(); Q.pop();
for (int next: graph[curr]){
if (c[curr][next] - f[curr][next] > 0 && pre[next] == -1){
pre[next] = curr;
Q.push(next);
if (next == E) break;
}
}
}
if (pre[E] == -1) break;
int flow = INF;
for (int i=E;i!=S;i=pre[i]){
flow = min(flow, c[pre[i]][i] - f[pre[i]][i]);
}
for (int i=E;i!=S;i=pre[i]){
f[pre[i]][i] += flow;
f[i][pre[i]] -= flow;
}
total += flow;
}
printf("%d\n", all - total);
}
return 0;
}
Comments