P1065 [NOIP2006 提高组] 作业调度方案(模拟)
Posted Harris-H
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1065 [NOIP2006 提高组] 作业调度方案(模拟)相关的知识,希望对你有一定的参考价值。
P1065 [NOIP2006 提高组] 作业调度方案(模拟)
牛马题,题意非常不明。
题目给的顺序是 每个工件 的工序顺序。
要求满足 机器同一时间只能为一个工序工作。
且工件的工序先后顺序 按照 给定顺序。
这个方案1至于为什么 第一个工件的第二工序在 第三工件的第一工序之后。
原因是因为:1-2 要等 1-1 完成, 2-1要等1-1完成。
所以此时轮到3-1 能满足条件。
然后代码的话,看下面。
// Problem: P1065 [NOIP2006 提高组] 作业调度方案
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/P1065
// Memory Limit: 128 MB
// Time Limit: 1000 ms
// Date: 2022-01-16 19:00:46
// --------by Herio--------
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N=1e3+5,M=2e4+5,inf=0x3f3f3f3f,mod=1e9+7;
const int hashmod[4] = 402653189,805306457,1610612741,998244353;
#define mst(a,b) memset(a,b,sizeof a)
#define PII pair<int,int>
#define PLL pair<ll,ll>
#define x first
#define y second
#define pb emplace_back
#define SZ(a) (int)a.size()
#define rep(i,a,b) for(int i=a;i<=b;++i)
#define per(i,a,b) for(int i=a;i>=b;--i)
#define ios ios::sync_with_stdio(false),cin.tie(nullptr)
void Print(int *a,int n)
for(int i=1;i<n;i++)
printf("%d ",a[i]);
printf("%d\\n",a[n]);
template <typename T> //x=max(x,y) x=min(x,y)
void cmx(T &x,T y)
if(x<y) x=y;
template <typename T>
void cmn(T &x,T y)
if(x>y) x=y;
PII a[25][25]; //第i个工具的第j个工序
int n,m;
bool mh[25][8005]; //第i个机器在时间j是否空闲
int b[N]; //顺序
int ans;//答案
int cnt[N];
int lst[N]; //第i个工具上一次完成的时间
int main()
scanf("%d%d",&m,&n);
rep(i,1,n*m) scanf("%d",&b[i]);
rep(i,1,n)
rep(j,1,m) scanf("%d",&a[i][j].x);
rep(i,1,n)
rep(j,1,m) scanf("%d",&a[i][j].y);
rep(i,1,n*m)
int x = b[i];
cnt[x]++; //计算此时是第x个工件的第几道工序
int id = a[x][cnt[x]].x,cost = a[x][cnt[x]].y;
//id 机器编号,cost花费的时间
int s = 0;
for(int j=lst[x]+1;;j++) //找到最早空闲的连续区间
if(!mh[id][j])
s++;
else s=0;
if(s==cost)
for(int k=j-cost+1;k<=j;k++) //填充
mh[id][k] = true;
if(j>ans) ans=j; //更新答案.
lst[x] = j; //更新上一次完成时间
break;
printf("%d\\n",ans);
return 0;
以上是关于P1065 [NOIP2006 提高组] 作业调度方案(模拟)的主要内容,如果未能解决你的问题,请参考以下文章