永夜初晗凝碧天

本博客现已全部转移到新地址,欲获取更多精彩文章,请访问http://acshiryu.github.io/

导航

POJ 1325 Machine Schedule 解题报告

分类:图论,最小覆盖点
作者:ACShiryu
时间:2011-8-2
参考资料:Matrix67's Blog 
Machine Schedule
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 7612 Accepted: 3207

Description

As we all know, machine scheduling is a very classical problem in computer science and has been studied for a very long history. Scheduling problems differ widely in the nature of the constraints that must be satisfied and the type of schedule desired. Here we consider a 2-machine scheduling problem. 

There are two machines A and B. Machine A has n kinds of working modes, which is called mode_0, mode_1, ..., mode_n-1, likewise machine B has m kinds of working modes, mode_0, mode_1, ... , mode_m-1. At the beginning they are both work at mode_0. 

For k jobs given, each of them can be processed in either one of the two machines in particular mode. For example, job 0 can either be processed in machine A at mode_3 or in machine B at mode_4, job 1 can either be processed in machine A at mode_2 or in machine B at mode_4, and so on. Thus, for job i, the constraint can be represent as a triple (i, x, y), which means it can be processed either in machine A at mode_x, or in machine B at mode_y. 

Obviously, to accomplish all the jobs, we need to change the machine's working mode from time to time, but unfortunately, the machine's working mode can only be changed by restarting it manually. By changing the sequence of the jobs and assigning each job to a suitable machine, please write a program to minimize the times of restarting machines. 

Input

The input file for this program consists of several configurations. The first line of one configuration contains three positive integers: n, m (n, m < 100) and k (k < 1000). The following k lines give the constrains of the k jobs, each line is a triple: i, x, y. 

The input will be terminated by a line containing a single zero. 

Output

The output should be one integer per line, which means the minimal times of restarting machine.

Sample Input

5 5 10
0 1 1
1 1 2
2 1 3
3 1 4
4 2 1
5 2 2
6 2 3
7 2 4
8 3 3
9 4 3
0

Sample Output

3
题目大意就是有两台机器A,B,分别由m和n种模式,初始时都在模式0,现在有k个工作,每一个工作都可以将A设置成模式i或将B设置成模式j,但每一次更换模式时机器不得不要重启,求完成所有工作的最小重启次数
输入数据的第一行有三个数据,分别代表工作数,A/B的模式数,当输入0时结束程序,接下来多行,每行的开始代表工作的序号,和完成该工作需将A/B设置的模式数,
输出一个整数,代表机器最小重启次数,
这一题关键的地方在于建图,图建好了问题就迎刃而解,这题可以将每一个工作的A/B的模式连接成一条边,这样就构成了一个二分图,这样每一个工作都可以由图中所构成的边完成,故我们只需要用最少的顶点覆盖每一条边就行了,也就是说题目要求求的最小重启次数实际上是要求二分图的最小覆盖数,在根据二分图的一个重要性质,最小覆盖数=最大匹配数,关于证明详见Matrix67's Blog

关于求二分图最大匹配的算法这里不再重复,详见POJ 1274 The Perfect Stall 解题报告

参考代码(未加注释,因为代码和POJ 1274很像,建议直接看POJ 1274 The Perfect Stall 解题报告):

 1 #include<iostream>
2 #include<cstdlib>
3 #include<cstdio>
4 #include<cstring>
5 #include<algorithm>
6 #include<cmath>
7 using namespace std;
8 int m , n , k ;
9 bool map[100][100] , vis [100];
10 int link [100];
11 bool find ( int x )
12 {
13 int i ;
14 for ( i = 1 ; i < n ; i ++ )
15 {
16 if (map[x][i] && !vis[i] )
17 {
18 vis[i]=true;
19 if( link [i] == 0 || find ( link [i] ) )
20 {
21 link [i] = x ;
22 return true ;
23 }
24 }
25 }
26 return false ;
27 }
28 int main()
29 {
30 while ( cin >> m , m )
31 {
32 cin >> n >> k ;
33 int i , j ;
34 memset ( map , 0 , sizeof ( map ) ) ;
35 memset ( link , 0 , sizeof ( link ) );
36 for ( i = 0 ; i < k ; i ++ )
37 {
38 int a , b , c ;
39 cin >> a >> b >> c ;
40 if ( b == 0 || c == 0 )
41 continue ;
42 map [b][c] = true ;
43 }
44 int ans = 0 ;
45 for ( i = 1 ; i < m ; i ++ )
46 {
47 memset ( vis , 0 , sizeof ( vis ) ) ;
48 if ( find ( i ) )
49 ans ++ ;
50 }
51 cout << ans << endl ;
52 }
53 return 0;
54 }

posted on 2011-08-02 01:19  ACShiryu  阅读(1335)  评论(3编辑  收藏  举报