博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uVa 714 (二分法)
阅读量:4647 次
发布时间:2019-06-09

本文共 4321 字,大约阅读时间需要 14 分钟。

Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu
 

Description

 

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, \dots, m$) that may have different number of pages ( $p_1, p_2, \dots, p_m$) and you want to make one copy of each of them. Your task is to divide these books among k scribes, $k \le 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 = b_0 < b_1 < b_2, \dots < b_{k-1} \le b_k = 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.

 

 

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 \le k \le m \le 500$. At the second line, there are integers $p_1, p_2, \dots p_m$ separated by spaces. All these values are positive and less than 10000000.

 

 

For each case, print exactly one line. The line must contain the input succession $p_1, p_2, \dots p_m$ 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.

 

 

29 3100 200 300 400 500 600 700 800 9005 4100 100 100 100 100

 

 

100 200 300 400 500 / 600 700 / 800 900100 / 100 / 100 / 100 100

 

 


Miguel A. Revilla
2000-02-15

程序分析:题目大意是要抄N本书,编号为1,2,3……N,每本书有1<=x<=10000000页,把这些书分配给K个抄写员,要求分配给某个抄写员的那些书的编号必须是连续的,每个抄写员的速度是相同的,求所有书抄完所用最少时间的分配方案。此题不但用到的二分法,同时在输出的时候也用到的贪心算法,还有一个值得注意的地方就是如果把X,Y,MID定义成int型会导致数据的溢出所以我们应该使用long long型。

程序代码:

#include 
#include
#include
#include
using namespace std;const int MAXN = 510;int a[MAXN], use[MAXN];long long low_bound, high_bound;int n, m;void init(){ low_bound = -1; high_bound = 0; memset(use, 0, sizeof(use));}int solve(int mid){ int sum = 0, group = 1; for(int i = n-1; i >= 0; i--) { if(sum + a[i] > mid) { sum = a[i]; group++; if(group > m) return 0; } else sum += a[i]; } return 1;}void print(int high_bound){ int group = 1, sum = 0; for(int i = n-1; i >= 0; i--) { if(sum + a[i] > high_bound) { use[i] = 1; sum = a[i]; group++; } else sum += a[i]; if(m-group == i+1) { for(int j = 0; j <= i; j++) use[j] = 1; break; } } for(int z = 0; z< n-1; z++) { printf("%d ", a[z]); if(use[z]) printf("/ "); } printf("%d\n", a[n-1]);}int main(){ int T; scanf("%d%*c", &T); while(T--) { init(); scanf("%d%d", &n, &m); for(int i = 0; i < n; i++) { scanf("%d", &a[i]); if(low_bound < a[i]) low_bound = a[i]; high_bound += a[i]; } long long x = low_bound, y = high_bound; while(x <= y) { long long mid = x+(y-x)/2; if(solve(mid)) y = mid-1; else x = mid+1; } print(x); } return 0;}

 

转载于:https://www.cnblogs.com/yilihua/p/4707415.html

你可能感兴趣的文章
Knowledge Point 20180305 数据在计算机中的表示
查看>>
谈谈对web标准的理解
查看>>
58前端内推笔试2017(含答案)
查看>>
sprintf 和strcpy 的差别
查看>>
MPEG4与.mp4
查看>>
实验5
查看>>
git 下载 安装
查看>>
录制终端信息并回放
查看>>
JS中window.event事件使用详解
查看>>
ES6深入学习记录(一)class方法相关
查看>>
《BI项目笔记》用Excel2013连接和浏览OLAP多维数据集
查看>>
C语言对mysql数据库的操作
查看>>
SQL Server 数据库备份
查看>>
INNO SETUP 获得命令行参数
查看>>
Charles抓取https请求
查看>>
LAMP环境搭建
查看>>
C语言的变量的内存分配
查看>>
clientcontainerThrift Types
查看>>
链接全局变量再说BSS段的清理
查看>>
hdu 1728 逃离迷宫
查看>>