POJ1325 Machine Schedule

Posted ljh2000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ1325 Machine Schedule相关的知识,希望对你有一定的参考价值。

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

Source

 
 
正解:二分图匹配
解题报告:
  今天考试T3,今天也就切了这道题了...
  考虑每个点相当于是一个矩阵里面的坐标,要么这一行被选,要么这一列被选,所以可以直接转成最小覆盖集模型。
  首先,把坐标含0的全部去掉,然后跑二分图最大匹配,由于最小覆盖等于最大匹配,可以直接得到答案。
 
 
 1 //It is made by jump~
 2 #include <iostream>
 3 #include <cstdlib>
 4 #include <cstring>
 5 #include <cstdio>
 6 #include <cmath>
 7 #include <algorithm>
 8 #include <ctime>
 9 #include <vector>
10 #include <queue>
11 #include <map>
12 #include <set>
13 using namespace std;
14 typedef long long LL;
15 const int MAXN = 211;
16 const int MAXM = 40011;
17 int n,m,k,ecnt;
18 int first[MAXN],to[MAXM],next[MAXM],match[MAXN];
19 bool vis[MAXN];
20 int ans;
21 
22 inline int getint()
23 {
24        int w=0,q=0; char c=getchar();
25        while((c<0 || c>9) && c!=-) c=getchar(); if(c==-) q=1,c=getchar(); 
26        while (c>=0 && c<=9) w=w*10+c-0, c=getchar(); return q ? -w : w;
27 }
28 
29 inline bool dfs(int x){
30     if(vis[x]) return false;
31     vis[x]=1;
32     for(int i=first[x];i;i=next[i]) {
33     int v=to[i]; if(vis[v])  continue;
34     if(!match[v] || dfs(match[v])) {
35         match[x]=v; match[v]=x;
36         return true;
37     }
38     }
39     return false;
40 }
41 
42 inline void work(){
43     while(scanf("%d",&n)!=EOF) {
44     if(n==0) break;
45     m=getint(); k=getint();
46     int x,y; memset(first,0,sizeof(first)); memset(match,0,sizeof(match));
47     ecnt=0;
48     for(int i=1;i<=k;i++) {
49         x=getint(); x=getint(); y=getint();
50         if(x==0 || y==0) { i--; k--; continue; }
51         y+=n;
52         next[++ecnt]=first[x]; first[x]=ecnt; to[ecnt]=y; 
53         next[++ecnt]=first[y]; first[y]=ecnt; to[ecnt]=x;
54     }
55     ans=0;
56     for(int i=1;i<n;i++) {
57         memset(vis,0,sizeof(vis));
58         if(dfs(i)) ans++;
59     }
60     printf("%d\n",ans);
61     }
62 }
63 
64 int main()
65 {
66   work();
67   return 0;
68 }

 

以上是关于POJ1325 Machine Schedule的主要内容,如果未能解决你的问题,请参考以下文章

Machine Schedule(poj 1325)

POJ1325 Machine Schedule

poj 1325 Machine Schedule 题解

POJ1325 Machine Schedule

poj 1325 machine schedule

POJ-1325 Machine Schedule 二分图匹配 最小点覆盖问题