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

【NOIP提高组2015D2T1】uva 714 copying books【二分答案】——yhx

时间:2016-04-24 21:37:07      阅读:286      评论: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.

 1 #include<cstdio>
 2 #include<cstring>
 3 #define M(a) memset(a,0,sizeof(a))
 4 long long a[510],b[510];
 5 int main()
 6 {
 7     long long i,j,k,m,n,p,q,x,y,z,t,l,r;
 8     scanf("%lld",&t);
 9     while (t--)
10     {
11         M(a);
12         M(b);
13         scanf("%lld%lld",&n,&p);
14         for (i=1;i<=n;i++)
15           scanf("%lld",&a[i]);
16         x=0;
17         y=a[1];
18         for (i=1;i<=n;i++)
19         {
20             x+=a[i];
21             if (a[i]>y) y=a[i];
22         }
23         l=y;
24         r=x;
25         while (l<r)
26         {
27             m=(l+r)/2;
28             x=a[1];
29             y=1;
30             for (i=2;i<=n;i++)
31               if (x+a[i]<=m)
32                 x+=a[i];
33               else
34               {
35                   y++;
36                   x=a[i];
37               }
38             if (y<=p) r=m;
39             else l=m+1;
40         }
41         j=n;
42         for (i=p-1;i>=1;i--)
43         {
44             x=0;
45             while (j>i&&x+a[j]<=l)
46               x+=a[j--];
47             b[i]=j;
48         }
49         b[0]=0;
50         for (i=1;i<=p-1;i++)
51         {
52             for (j=b[i-1]+1;j<=b[i];j++)
53               printf("%lld ",a[j]);
54             printf("/ ");
55         }
56         printf("%lld",a[b[p-1]+1]);
57         for (i=b[p-1]+2;i<=n;i++)
58           printf(" %lld",a[i]);
59         printf("\n");
60     }
61 }

这题简直就是去年NOIP跳石头的翻版啊!!!【当然应该说后者是前者的翻版】

二分答案,判定的时候从左往右尽量划到不能为止。

输出的时候要从后面开始贪心。

【NOIP提高组2015D2T1】uva 714 copying books【二分答案】——yhx

标签:

原文地址:http://www.cnblogs.com/AwesomeOrion/p/5428229.html

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