列表

详情


NC51204. 任务安排2

描述

There is a sequence of N jobs to be processed on one machine. The jobs are numbered from 1 to N, so that the sequence is 1,2,..., N. The sequence of jobs must be partitioned into one or more batches, where each batch consists of consecutive jobs in the sequence. The processing starts at time 0. The batches are handled one by one starting from the first batch as follows. If a batch b contains jobs with smaller numbers than batch c, then batch b is handled before batch c. The jobs in a batch are processed successively on the machine. Immediately after all the jobs in a batch are processed, the machine outputs the results of all the jobs in that batch. The output time of a job j is the time when the batch containing j finishes.
A setup time S is needed to set up the machine for each batch. For each job i, we know its cost factor Fi and the time Ti required to process it. If a batch contains the jobs x, x+1,... , x+k, and starts at time t, then the output time of every job in that batch is . Note that the machine outputs the results of all jobs in a batch at the same time. If the output time of job i is Oi, its cost is Oi * Fi. For example, assume that there are 5 jobs, the setup time S = 1, (T1, T2, T3, T4, T5) = (1, 3, 4, 2, 1), and(F1, F2, F3, F4, F5) = (3, 2, 3, 3, 4), If the jobs are partitioned into three batches {1, 2}, {3}, {4, 5}, then the output times (O1, O2, O3, O4, O5) = (5, 5, 10, 14, 14) and the costs of the jobs are (15, 10, 30, 42, 56), respectively. The total cost for a partitioning is the sum of the costs of all jobs. The total cost for the example partitioning above is 153.
You are to write a program which, given the batch setup time and a sequence of jobs with their processing times and cost factors, computes the minimum possible total cost.

输入描述

Your program reads from standard input. The first line contains the number of jobs N,. The second line contains the batch setup time S which is an integer, . The following N lines contain information about the jobs 1, 2,..., N in that order as follows. First on each of these lines is an integerT_i,  the processing time of the job. Following that, there is an integer F_i, the cost factor of the job.

输出描述

Your program writes to standard output. The output contains one line, which contains one integer: the minimum possible total cost.

示例1

输入:

5
1
1 3
3 2
4 3
2 3
1 4

输出:

153

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++14(g++5.4) 解法, 执行用时: 7ms, 内存消耗: 3048K, 提交时间: 2020-04-13 18:12:24

#include<bits/stdc++.h>
using namespace std;
const int N=300010;
long long dp[N],sumt[N],sumc[N],q[N];
int main()
{
	int n,s;
	cin>>n>>s;
	for(int i=1;i<=n;i++)
	{
		int t,c;
		scanf("%d%d",&t,&c);
		sumt[i]=sumt[i-1]+t;
		sumc[i]=sumc[i-1]+c;
	}
	memset(dp,0x3f3f3f3f,sizeof(dp));
	dp[0]=0;
	int head=1,tail=1;
	q[1]=0;
	for(int i=1;i<=n;i++)
	{
		while(head<tail&&(dp[q[head+1]]-dp[q[head]])<=(s+sumt[i])*(sumc[q[head+1]]-sumc[q[head]]))
			head++;
		dp[i]=dp[q[head]]-(s+sumt[i])*sumc[q[head]]+sumt[i]*sumc[i]+s*sumc[n];
		while(head<tail&&(dp[q[tail]]-dp[q[tail-1]])*(sumc[i]-sumc[q[tail]])>=(dp[i]-dp[q[tail]])*(sumc[q[tail]]-sumc[q[tail-1]]))
			tail--;		
		q[++tail]=i; 
	}
	cout<<dp[n]<<endl;		
	return 0;
}

C++(g++ 7.5.0) 解法, 执行用时: 8ms, 内存消耗: 2900K, 提交时间: 2022-08-12 10:23:44

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
long long f[300010],sumt[300010],sumc[300010];
int q[300010],n,s;
int main(){
	cin>>n>>s;
	for(int i=1; i<=n; i++)
	{
		int t,c;
		cin>>t>>c;
		sumt[i]=sumt[i-1]+t;
		sumc[i]=sumc[i-1]+c;
	}
	memset(f,0x3f,sizeof(f));
	f[0]=0;
	int l=1,r=1;
	q[1]=0;
	for(int i=1; i<=n; i++)
	{
		while(l<r&&(f[q[l+1]]-f[q[l]])<=(s+sumt[i])*(sumc[q[l+1]]-sumc[q[l]]))l++;
		f[i]=f[q[l]]-(s+sumt[i])*sumc[q[l]]+sumt[i]*sumc[i]+s*sumc[n];
		while(l<r&&(f[q[r]]-f[q[r-1]])*(sumc[i]-sumc[q[r]])>=(f[i]-f[q[r]])*(sumc[q[r]]-sumc[q[r-1]]))r--;
		q[++r]=i;
	}
	cout<<f[n]<<endl;
}

C++(clang++11) 解法, 执行用时: 93ms, 内存消耗: 1016K, 提交时间: 2021-04-10 14:38:19

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=5e4+7;
ll f[N],st[N],sc[N];
int n,s;
int main(){
    cin>>n>>s;
    for(int i=1;i<=n;i++){
        int t,c;cin>>t>>c;
        st[i]=st[i-1]+t;
        sc[i]=sc[i-1]+c;
    }
    memset(f, 0x3f, sizeof(f));
    f[0]=0;
    for(int i=1;i<=n;i++)
        for(int j=0;j<i;j++)
            f[i]=min(f[i],f[j]+st[i]*(sc[i]-sc[j])+s*(sc[n]-sc[j]));
    cout<<f[n]<<endl;
}

上一题