博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1150:Machine Schedule(二分匹配,匈牙利算法)
阅读量:7034 次
发布时间:2019-06-28

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

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 5371    Accepted Submission(s): 2658


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

这题和过山车一模一样。。

就是多了点无用的东西。

。水。。

#include
#include
#include
#include
using namespace std;const int M = 1000 + 5;int n, m, k, cas;int link[M];bool MAP[M][M];bool cover[M];int ans;void init(){ int x, y; memset(MAP, false, sizeof(MAP)); for(int i=0; i

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

你可能感兴趣的文章
CSS综合复习(三)
查看>>
脚本化文档
查看>>
多线程
查看>>
linux双网卡绑定简要步骤
查看>>
setsockopt()用法
查看>>
sed命令实例
查看>>
20180102-正则表达式和grep
查看>>
大型网站技术架构(六)网站的伸缩性架构
查看>>
MyEclipse+Tomcat+MAVEN+SVN项目完整环境搭建
查看>>
Java基础学习总结(13)——流IO
查看>>
Maven学习总结(三)——使用Maven构建项目
查看>>
Tomcat在Linux上的安装与配置
查看>>
CentOS 6和CentOS 7命令区别
查看>>
Maven学习总结(四)——Maven核心概念
查看>>
安装xtables-addons时报错
查看>>
.NET开发规范教程
查看>>
网络公开课《最后的升级-Oracle RAC数据库升级》
查看>>
配置FTP服务
查看>>
我的友情链接
查看>>
人类认识的层次模型
查看>>