백준11376 열혈강호2

문제 링크

  • http://icpc.me/11376

사용 알고리즘

  • Ford Fulkerson

시간복잡도

  • O(VE2)

풀이

각 사람은 최대 두 개의 일을 할 수 있고, 각각의 일은 최대 한 명만 담당할 수 있습니다.
source에서 사람까지의 용량을 2, 사람에서 일까지의 용량을 1, 일에서 sink까지의 용량을 1로 잡고 모델링을 해주면 됩니다.

전체 코드

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <bits/stdc++.h>
using namespace std;

vector<int> g[2010];
typedef pair<int, int> p;
int cap[2010][2010];
int flow[2010][2010];
int n, m;
const int inf = 1e9+7;
const int s = 0, e = 2001;

int par[2010];
int ans = 0;

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0);
	cin >> n >> m;
	for(int i=1; i<=n; i++){
		cap[s][i] = 2;
		g[s].push_back(i);
		g[i].push_back(s);
		int t; cin >> t;
		for(int j=0; j<t; j++){
			int tt; cin >> tt;
			tt += 1000;
			g[i].push_back(tt);
			g[tt].push_back(i);
			cap[i][tt] = 1;
		}
	}
	for(int i=1001; i<=1000+m; i++){
		g[i].push_back(e);
		g[e].push_back(i);
		cap[i][e] = 1;
	}

	for(int iter=1; ; iter++){
		memset(par, -1, sizeof(par));
		queue<int> q;
		q.push(s);
		while(!q.empty()){
			int now = q.front(); q.pop();
			for(auto nxt : g[now]){
				if(par[nxt] == -1 && cap[now][nxt] - flow[now][nxt] > 0){
					q.push(nxt); par[nxt] = now;
					if(nxt == e) break;
				}
			}
		}
		if(par[e] == -1) break;

		int cost = inf;
		for(int i=e; i!=s; i = par[i]){
			cost = min(cost, cap[par[i]][i] - flow[par[i]][i]);
		}

		for(int i=e; i!=s; i = par[i]){
			flow[par[i]][i] += cost;
			flow[i][par[i]] -= cost;
		}
		ans += cost;
	}
	cout << ans;
}