Machine Schedule

Time Limit: 1 Sec  Memory Limit: 256 MB

题目连接

http://acm.hdu.edu.cn/showproblem.php?pid=1150

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

HINT

题意

有2个机器m个任务,每一个任务在a机器需要状态x,在b机器需要状态y,然后每个机器开始状态都是0,改变状态花费为1,然后问你最小花费完成这些任务

题解:

把每一个任务都当成一个边,把x状态和y连接起来,然后就是求最小的点来覆盖所有的边,就是一个最少点覆盖问题

代码:

//qscqesze
#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <sstream>
#include <queue>
#include <typeinfo>
#include <fstream>
#include <map>
typedef long long ll;
using namespace std;
//freopen("D.in","r",stdin);
//freopen("D.out","w",stdout);
#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
#define maxn 2001
#define mod 10007
#define eps 1e-9
//const int inf=0x7fffffff; //无限大
const int inf=0x3f3f3f3f;
/* */
//************************************************************************************** inline ll read()
{
int x=,f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<=''){x=x*+ch-'';ch=getchar();}
return x*f;
}
int ma[maxn][maxn];
int vis[maxn];
int match[maxn];
int n,m;
vector<int> e[maxn];
int dfs(int a)
{
for(int i=;i<e[a].size();i++)
{
if(vis[e[a][i]]==)
{
vis[e[a][i]]=;
if(match[e[a][i]]==-||dfs(match[e[a][i]]))
{
match[e[a][i]]=a;
return ;
}
}
}
return ;
}
int main()
{
while(scanf("%d",&n)!=EOF)
{
if(n==)
break;
memset(match,-,sizeof(match));
for(int i=;i<n;i++)
e[i].clear();
m=read();
int k=read();
for(int i=;i<k;i++)
{
int a=read();
int x=read(),y=read();
if(x>&&y>)
{
e[x].push_back(y);
}
}
int ans=;
for(int i=;i<n;i++)
{
memset(vis,,sizeof(vis));
if(dfs(i)==)
ans++;
}
printf("%d\n",ans);
} }

最新文章

  1. Socket编程实践(3) 多连接服务器实现与简单P2P聊天程序例程
  2. FAQ
  3. Session失效之 IE iframe cookie问题(p3p)
  4. Java魔法堂:URI、URL(含URL Protocol Handler)和URN
  5. Maven-生命周期
  6. js兼容注意事项--仅供参考
  7. 重温WCF之流与文件传输(七)
  8. ajax post 传参
  9. 黑马程序员——【Java基础】——泛型、Utilities工具类、其他对象API
  10. Windows下通过脚本快速修改IP地址
  11. [Android] 获取WebView的页面标题(Title)-----WebChromeClient.onReceivedTitle()方法的重写
  12. SqlServer查询某数据在某表某列中
  13. Linux下普通IO文件操作函数---C语言
  14. [WebKit内核] JavaScriptCore深度解析--基础篇(一)字节码生成及语法树的构建
  15. BIM 3D 数据交换格式 ----张建平(清华女)
  16. MarkDown常用格式
  17. 关于dealloc 注意事项
  18. 洛谷P4425 转盘 [HNOI/AHOI2018] 线段树+单调栈
  19. SpringData Redis
  20. 限定某个目录禁止解析php 、限制user_agent 、php的配制文件、PHP的动态扩展模块

热门文章

  1. [shell]shell中if语句的使用
  2. Qt软件打包发布(QT5.4.1(msvc2013_64_opengl),Win7 64bit)
  3. Go 的package
  4. 一键开关VS的release模式优化
  5. MySQL学习笔记:删除存储过程和函数
  6. centos下安装zabbix
  7. mongodb优化篇
  8. Sample ASP.NET IHttpHandler
  9. HDU 4443 带环树形dp
  10. nodejs mongoose populate 多层模型