码迷,mamicode.com
首页 > 其他好文 > 详细

714 - Copying Books——[贪心、二分查找]

时间:2016-04-27 00:02:07      阅读:636      评论:0      收藏:0      [点我收藏+]

标签:

Before the invention of book-printing, it was very hard to make a copy of a book. All the contents had
to be re-written by hand by so called scribers. The scriber had been given a book and after several
months he finished its copy. One of the most famous scribers lived in the 15th century and his name
was Xaverius Endricus Remius Ontius Xendrianus (Xerox). Anyway, the work was very annoying and
boring. And the only way to speed it up was to hire more scribers.
Once upon a time, there was a theater ensemble that wanted to play famous Antique Tragedies. The
scripts of these plays were divided into many books and actors needed more copies of them, of course.
So they hired many scribers to make copies of these books. Imagine you have m books (numbered
1, 2, . . . , m) that may have different number of pages (p1, p2, . . . , pm) and you want to make one copy of
each of them. Your task is to divide these books among k scribes, k ≤ m. Each book can be assigned
to a single scriber only, and every scriber must get a continuous sequence of books. That means, there
exists an increasing succession of numbers 0 = b0 < b1 < b2, . . . < bk−1 ≤ bk = m such that i-th scriber
gets a sequence of books with numbers between bi−1 + 1 and bi
. The time needed to make a copy of
all the books is determined by the scriber who was assigned the most work. Therefore, our goal is to
minimize the maximum number of pages assigned to a single scriber. Your task is to find the optimal
assignment.
Input
The input consists of N cases. The first line of the input contains only positive integer N. Then follow
the cases. Each case consists of exactly two lines. At the first line, there are two integers m and k,
1 ≤ k ≤ m ≤ 500. At the second line, there are integers p1, p2, . . . , pm separated by spaces. All these
values are positive and less than 10000000.
Output
For each case, print exactly one line. The line must contain the input succession p1, p2, . . . pm divided
into exactly k parts such that the maximum sum of a single part should be as small as possible. Use
the slash character (‘/’) to separate the parts. There must be exactly one space character between any
two successive numbers and between the number and the slash.
If there is more than one solution, print the one that minimizes the work assigned to the first scriber,
then to the second scriber etc. But each scriber must be assigned at least one book.
Sample Input
2
9 3
100 200 300 400 500 600 700 800 900
5 4
100 100 100 100 100
Sample Output
100 200 300 400 500 / 600 700 / 800 900
100 / 100 / 100 / 100 100

解题思路:
  本题的优化目标是使最大连续子序列的和最小,并且在最大子序列和相同的情况下s1、s2...尽量小。那么我们可以从右边开始,尽量向左划分,当目前剩余书本数等于剩余的人数时,剩余每本书的分配策略只能是每人一本。

代码如下:

 1 #include <iostream>
 2 #include <cstring>
 3 #include <vector>
 4 #include <cstdio>
 5 #include <algorithm>
 6 using namespace std;
 7 #define maxm 500+5
 8 typedef long long LL;
 9 int m,k;
10 int p[maxm];
11 vector<int> s;
12 int ans[maxm];
13 LL M;
14 
15 bool judge(LL x){
16     
17     s.clear();
18     bool flag=true;
19     int cnt=k;
20     for(int i = m;i>0;){
21         LL sum = 0;
22         while(i > 0 && sum + p[i] <= x){
23             if(i + 1 == cnt) break;
24             sum += p[i--];
25         }
26         s.push_back(i);
27         cnt--;
28         if(s.size()>k){
29             flag = false;
30             break;
31         }
32     }
33     if(flag){
34         int j=0;
35         for(int i = s.size() - 1;i >= 0;i--){
36             ans[j++] = s[i];
37         }
38         return true;
39     }
40     else return false;
41 }
42 int main(int argc, const char * argv[]) {
43     freopen("/Users/hujiacheng/Desktop/input.txt", "r", stdin);
44     int N;
45     scanf("%d",&N);
46     while(N--){
47         M=0;
48         memset(ans, 0, sizeof ans);
49         scanf("%d%d",&m,&k);
50         for(int i=1;i<=m;i++){
51             scanf("%d",&p[i]);
52             M += p[i];
53         }
54         LL l=1,r=M;
55         LL mid=(l+r)/2;
56         while(l<r){
57             if(judge(mid)){
58                 r=mid;
59                 mid=(l+r)/2;
60                 
61             }
62             else {
63                 l=mid+1;
64                 mid=(l+r)/2;
65             }
66         }
67         int j=1;
68         for(int i=1;i<=m;i++){
69             if(i!=1) cout<<" ";
70             cout<<p[i];
71             if(i==ans[j]){
72                 cout<<" /";
73                 j++;
74             }
75         }
76         cout<<endl;
77     }
78     return 0;
79 }

 

714 - Copying Books——[贪心、二分查找]

标签:

原文地址:http://www.cnblogs.com/Kiraa/p/5437068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!