Hduoj1150【匈牙利算法】【水题】

来源:互联网 发布:win10怎么安装mysql 编辑:程序博客网 时间:2024/04/30 15:48
/*Machine ScheduleTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5945    Accepted Submission(s): 2988Problem DescriptionAs 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.  InputThe 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. OutputThe output should be one integer per line, which means the minimal times of restarting machine. Sample Input5 5 100 1 11 1 22 1 33 1 44 2 15 2 26 2 37 2 48 3 39 4 30 Sample Output3 SourceAsia 2002, Beijing (Mainland China) */#include<stdio.h>#include<string.h>int map[1100][1100], a[1100], b[1100], mark[1100], m, n;int path(int x){int y;for(y = 1; y < n; y++){if( map[x][y] && !mark[y]){mark[y] = 1;if(b[y] == -1 || path(b[y])){a[x] = y;b[y] = x;return 1;}}}return 0;}int main(){int  i, j, k, x, y, sum;while(scanf("%d", &m) != EOF && m){sum = 0;memset(a, -1, sizeof(a));memset(b, -1, sizeof(b));memset(map, 0, sizeof(map));scanf("%d%d", &n, &k);for(i = 0; i < k; i++){scanf("%d%d%d", &j, &x, &y);map[x][y] = 1;}for(i = 1 ; i < m; i++){if(a[i] == -1){memset(mark, 0, sizeof(mark));sum += path(i);}}printf("%d\n", sum);}return 0;} 


题意:有机器A和B,两台机器各有m,n中工作模式,现有k个任务,每个任务可处理A B中的一个机器的特定模式,每次处理可能需要切换机器的模式,如若切换模式则需重启机器,现求完成k个任务机器所需重启的最小次数。

思路:此题求的是最小覆盖点,即最大二分匹配。

注意:当机器处于0模式状态下不需要重启,所以匹配直接从1开始,其次这道题m,n的范围要开到1000+。

体会:状态不好,最好不要敲代码,不然事倍功半。。。。

0 0
原创粉丝点击