정리충의 정리노트

[백준] 11495: 격자 0 만들기 본문

PS/Flow

[백준] 11495: 격자 0 만들기

ioqoo 2020. 4. 29. 17:58

0. 문제 주소

 

https://www.acmicpc.net/problem/11495

 

11495번: 격자 0 만들기

문제 음수가 아닌 정수들의 격자가 주어진다. 당신은 이 격자에 다음 연산을 행할 수 있다. 1. 격자에서 가로 또는 세로로 인접한 정수 2개를 고른다. 2. 각 정수가 양수일 때 1 감소시킨다. 다음 그림은 총 4개의 연속한 연산을 2*2 격자에 가해서 모든 정수를 0으로 만든 과정을 보여준다. 위 예제에서는 모든 정수를 0으로 만들기 위해 4번의 연산을 행했다. 이보다 적은 횟수의 연산으로는 모든 정수를 0으로 만들 수 없다는 것을 쉽게 알 수 있다.

www.acmicpc.net

 

 

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