标签:
Description
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 t + S + (Tx + Tx+1 + ... + Tx+k). 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.
program poj1180; const maxn=10010; var i,head,tail,n,s:longint; opt,dp,f,t:array[-1..maxn]of int64; function g(x,y:longint):extended; begin exit((dp[x]-dp[y])/(t[x]-t[y])); end; begin readln(n); readln(s); for i:=1 to n do readln(t[i],f[i]); for i:=n-1 downto 1 do begin inc(t[i],t[i+1]); inc(f[i],f[i+1]); end; t[n+1]:=0;f[n+1]:=0; head:=1;tail:=1;opt[1]:=n+1;dp[n+1]:=0; for i:=n downto 1 do begin while (head<tail)and(g(opt[head+1],opt[head])<f[i]) do inc(head); dp[i]:=dp[opt[head]]+(s+t[i]-t[opt[head]])*f[i]; while (head<tail)and(g(opt[tail],opt[tail-1])>g(i,opt[tail])) do dec(tail); inc(tail);opt[tail]:=i; end; writeln(dp[1]); end.
[POJ1180]Batch Scheduling 斜率优化DP
标签:
原文地址:http://www.cnblogs.com/mjy0724/p/4408642.html