티스토리 뷰

백준

백준 소스코드 [C++] 2188 축사 배정

Hani_Levenshtein 2020. 9. 12. 10:01

www.acmicpc.net/problem/2188

 

2188번: 축사 배정

농부 존은 소 축사를 완성하였다. 축사 환경을 쾌적하게 유지하기 위해서, 존은 축사를 M개의 칸으로 구분하고, 한 칸에는 최대 한 마리의 소만 들어가게 계획했다. 첫 주에는 소를 임의 배정해�

www.acmicpc.net

백준 소스코드 [C++] 2188 축사 배정

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
typedef long long ll;
using namespace std;
#define MAX 987654321
int L, R;
#define left_max 200
#define right_max 200
bool adj[left_max][right_max];
vector<int> leftmatch, rightmatch;
vector<bool> visited;

bool dfs(int l) {
    if (visited[l]) return false;
    visited[l] = true;
    for (int r = 0;r < R;r++) {
        if (adj[l][r]) {
            if (rightmatch[r] == -1 || dfs(rightmatch[r])) {
                leftmatch[l] = r; rightmatch[r] = l; return true;
            }

        }
    }
    return false;
}

int match() {
   leftmatch = vector<int>(L, -1); rightmatch = vector<int>(R, -1);
    int size = 0;
    for (int l = 0;l < L;l++) {
        visited = vector<bool>(L, false);
        if (dfs(l)) size++;
    }
    return size;
}
int main() {
    cin >> L>>R;
    int t,m;
    for (int i = 0;i < L;i++) {
        cin >> t;
        while (t--) {
            cin >> m;
            adj[i][m-1] = true;
        }
    }
    cout << match();
    return 0;

}
댓글