백준9577 토렌트

문제 링크

  • http://icpc.me/9577

사용 알고리즘

  • 이분 매칭

풀이

source와 시간을 나타내는 정점과 연결하고, 시드를 나타내는 sink와 이어줍시다.
특정 시간에 받을 수 있는 시드를 모두 이어준다면 이분 그래프가 만들어집니다.
이분매칭을 돌려줍시다.

전체 코드

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
#include <bits/stdc++.h>
using namespace std;

int bias = 101;
vector<int> g[222];
int par[222];
int chk[222];

void init(){
	for(int i=0; i<222; i++) g[i].clear();
	memset(par, -1, sizeof par);
}

bool dfs(int v){
	for(auto i : g[v]){
		if(chk[i]) continue;
		chk[i] = 1;
		if(par[i] == -1 || dfs(par[i])){
			par[i] = v; return 1;
		}
	}
	return 0;
}

int solve(int maxi){
	int cnt = 0;
	for(int i=0; i<=100; i++){
		memset(chk, 0, sizeof chk);
		cnt += dfs(i);
		if(cnt == maxi) return i+1;
	}
	return -1;
}

void f(){
	init();
	int n, m; cin >> n >> m;
	for(int i=1; i<=m; i++){
		int s, e, t; cin >> s >> e >> t;
		while(t--){
			int q; cin >> q; q += bias;
			for(int i=s; i<e; i++) g[i].push_back(q);
		}
	}

	cout << solve(n) << "\n";
}

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0);
	int t; cin >> t;
	while(t--) f();
}