博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1325、ZOJ 1364、HDU 1150 Machine Schedule - from lanshui_Yang
阅读量:6449 次
发布时间:2019-06-23

本文共 3201 字,大约阅读时间需要 10 分钟。

Problem 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两种机器,给你三个数n,m,k,分别表示机器A有n中工作模式(编号0 ~ n-1),机器B有m种工作模式(编号0~m-1),共有k个任务,每种任务均可以在机器A,B的一个模式下完成。接下来输入k行,每行三个整数a,b,c,其中,a为任务编号,b表示该任务可在机器A的第b种模式下完成,c表示该任务可在机器B的第c中模式下完成。但机器A,B在变换模式时均需重启,让你完成所有的任务并使机器重启的次数最小。(机器A,B初始时均在第0模式)。
  解题思路:此题是求二分图的最小点覆盖。有以下定理:二分图的点覆盖数 = 匹配数。 建图:把A的n种模式和B的m种模式看做顶点,如果某人可在A的第i个模式和B的第j个模式下完成,则将顶点Ai 和 Bj 之间连一条边。
请看代码:
#include
#include
#include
#include
#include
#include
using namespace std ;const int MAXN = 105 ;short g[MAXN][MAXN] ;bool vis[MAXN] ;short cx[MAXN] , cy[MAXN] ;int n , m , k ;void init(){ memset(g , 0 , sizeof(g)) ; memset(cx , -1 , sizeof(cx)) ; memset(cy , -1 , sizeof(cy)) ; int i ; for(i = 0 ; i < k ; i ++) { int a , b , c ; scanf("%d%d%d" , &a , &b ,&c) ; if(b != 0 && c != 0) { g[b][c] = 1 ; } }}int path(int v){ int i ; for(i = 0 ; i < m ; i ++) { if(g[v][i] && !vis[i]) { vis[i] = 1 ; if(cy[i] == -1 || path(cy[i])) { cy[i] = v ; cx[v] = i ; return 1 ; } } } return 0 ;}void solve(){ int i ; int ans = 0 ; for(i = 0 ; i < n ; i ++) { if(cx[i] == -1) { memset(vis , 0 , sizeof(vis)) ; if(path(i)) ans ++ ; } } printf("%d\n" , ans) ;}int main(){ while (scanf("%d" , &n) != EOF) { if(n == 0) break ; scanf("%d%d" , &m , &k) ; init() ; solve() ; } return 0 ;}

转载地址:http://kmowo.baihongyu.com/

你可能感兴趣的文章
再谈Cybersecurity的定义
查看>>
字节对其小结
查看>>
我的友情链接
查看>>
开通测试
查看>>
Android中HttpURLConnection网络请求
查看>>
linux 时间函数
查看>>
我的友情链接
查看>>
存储过程实现分页(不使用控件)
查看>>
我的友情链接
查看>>
UX的设计灵感从哪里来?——看看Megan Wilson的采访
查看>>
电商大数据项目-推荐系统实战(一)
查看>>
取证分析:在通信过程中不关心目标的子网掩码
查看>>
iOS开发篇——应用生命周期
查看>>
修改进入linux开机界面模式
查看>>
Linux--系统编程知识总结
查看>>
k-means算法原理以及数学知识
查看>>
判断python字典某个键的值是否为空
查看>>
SpringMVC-方法四种类型返回值总结,你用过几种?
查看>>
cacti plugin之realtime
查看>>
用VMwaer Workstation安装windows7
查看>>