网页设置页数/总页数_图书分配问题(分配最小页数)

网页设置页数/总页数

Problem statement:

问题陈述:

Given an array of integers A of size N and an integer B. College library has N bags, the ith book has A[i] number of pages.

给定一个大小为N的整数A和一个整数B的数组。 高校图书馆有N个书包,第i本书有A [i]页。

You have to allocate books to B number of students so that the maximum number of pages allocated to a student is minimum. A book will be allocated to exactly one student. Each student has to be allocated at least one book. Allotment should be in contiguous order, for example, A student cannot be allocated book 1 and book 3, skipping book 2. Calculate and return that minimum possible number. Return -1 if a valid assignment is not possible.

您必须将图书分配给B个学生,以便分配给学生的最大页面数最少。 一本书将分配给恰好一个学生。 每个学生必须至少分配一本书。 分配应该按连续的顺序进行,例如,不能为学生分配书1和书3,而跳过书2。计算并返回该最小可能数。 如果不可能进行有效分配,则返回-1

Input:

输入:

The first line contains T denoting the number of test cases. Then follows a description of T test cases: Each case begins with a single positive integer N denoting the number of books. The second line contains N space-separated positive integers denoting the pages of each book. And the third line contains another integer B, denoting the number of students.

第一行包含T,表示测试用例的数量。 接下来是对T个测试用例的描述:每个用例都以一个表示书数的正整数N开头。 第二行包含N个以空格分隔的正整数,表示每本书的页数。 第三行包含另一个整数B ,表示学生人数。

Output:

输出:

For each test case, output a single line containing the minimum number of pages each student has to read for the corresponding test case.

对于每个测试用例,输出一行,其中包含每个学生必须为相应的测试用例阅读的最少页数。

Examples:

例子:

INPUT:
T=1
N=4
[10,20,30,40]
B=2
OUTPUT:	
60, one student assigned 60 pages and other 40.
INPUT:
T=1
N=4
[12 34 67 90]
B=2
OUTPUT:
113, one student assigned 113 pages and other 90.

Solution Approach (Binary Search Approach)

解决方法(二进制搜索方法)

We will use the logic that the pages can be assigned in increasing order manner since one student can have the maximum number of pages as the sum of pages of all the books (which is practically not possible here as we need to assign something to every candidate) and to divide the page in an optimal manner we need to have a max of all the pages of different books to be assigned to some student and remaining pages should be distributed to other students so that the maximum amount of pages assigned to a student is minimum.

我们将使用一种逻辑,即可以按升序分配页面,因为一个学生可以拥有最大的页面数作为所有书籍的页面总和(在此实际上是不可能的,因为我们需要为每位候选人分配一些内容)并以最佳方式划分页面,我们需要将要分配给某位学生的不同书籍的所有页面中的最大值,而其余页面应分配给其他学生,以使分配给学生的最大页面数量为最低。

So the constraint for binary search start and end is solved by taking start as the max of pages of the given book and end will be the sum of all the pages from all books.
We will keep using the binary search method and each time we take mid as the pivot we check if that is the maximum number of pages which can be assigned to the B number of student optimally.

因此,通过将start作为给定书的最大页数来解决二进制搜索开始和结束的限制,而end将是所有书中所有页数的总和。
我们将继续使用二进制搜索方法,并且每当以mid为中心时,我们都会检查这是否是可以最佳分配给B级学生的最大页面数。

We declare a bool function isValid which will check if the current number of pages that we pass into it is a valid case of not is it satisfy the condition then we return true and then check the maximum of currently assigned pages and new assigned pages.
One more condition to check is the number of students and the number of books if the number of students is greater than the number of books then we return false to isValid condition.

我们声明一个布尔函数isValid,该函数将检查传入的当前页数是否为not的有效情况,如果满足条件,则返回true,然后检查当前分配的页面和新分配的页面的最大值。
要检查的另一种条件是学生数量和书本数量,如果学生数量大于书本数量,则将false返回到isValid条件。

C++ Implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
// boolean function to check if the num 
// pages is valid partition or not
bool isValid(ll book[], ll n, ll sum, ll B) 
{
// if number of books is less than number of student.
if (n < B) 
return false;
else {
// initiailse cur for number of pages 
// that student can have.
ll cur = 0; 
// initialise number student count for 
// assigned number of pages.
ll cnt = 1; 
for (ll i = 0; i < n; i++) {
cur += book[i];
// if(cur number of pages is greater than num number 
// of pages that one student can have then we incrase 
// the number of student by one and start again with 
// current number of pages.
if (cur > sum) 
{
cnt++;
cur = book[i];
// if number of student is greater than B than 
// return false.
if (cnt > B) 
return false;
}
}
// if allocation is possible then return true.
if (cnt <= B) 
return true;
}
return false;
}
int main()
{
ll t;
cout << "Enter number of test cases: ";
cin >> t;
while (t--) {
ll n;
cout << "Enter number of books: ";
cin >> n;
ll book[n];
cout << "Enter book pages: ";
for (ll i = 0; i < n; i++)
cin >> book[i];
ll B;
cout << "Enter number of students: ";
cin >> B;
// initialise st for binary search as 
// the maximum value among the book.
ll st = *max_element(book, book + n); 
// initialisze end for binary search as 
// the sum of all the values of books.
ll end = accumulate(book, book + n, 0); 
ll ans = INT_MAX;
while (st <= end) {
// find mid of binary search.
ll mid = st + (end - st) / 2; 
// check for valid condition then assign the answer.
if (isValid(book, n, mid, B)) 
{
ans = mid;
end = mid - 1;
}
else
st = mid + 1;
}
if (ans == INT_MAX) {
cout << "Allocation not possible: ";
cout << -1 << "\n";
}
else {
cout << "Minimum number of pages: ";
cout << ans << "\n";
}
}
return 0;
}

Output:

输出:

Enter number of test cases: 4
Enter number of books: 4
Enter book pages: 10 20 30 40
Enter number of students: 2
Minimum number of pages: 60
Enter number of books: 4                       
Enter book pages: 12 34 67 90
Enter number of students: 2
Minimum number of pages: 113
Enter number of books: 5
Enter book pages: 25 46 28 49 24
Enter number of students: 4
Minimum number of pages: 71
Enter number of books: 3
Enter book pages: 20 20 20 
Enter number of students: 3
Minimum number of pages: 20

  • Time Complexity for above approach in worst case: O(N*log(sum(book[]))

    最坏情况下上述方法的时间复杂度: O(N * log(sum(book []))

  • Space Complexity for the above approach is: O(1)

    上述方法的空间复杂度为: O(1)



Also tagged in: Google, Codenation

还标记在: Google , Codenation

Problem source: https://www.interviewbit.com/problems/allocate-books/

问题来源:https://www.interviewbit.com/problems/allocate-books/

翻译自: https://www.includehelp.com/icp/book-allocation-problem-allocate-minimum-number-of-pages.aspx

网页设置页数/总页数

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545774.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

算法图解:如何判断括号是否有效?

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;今天要讲的这道题是 bilibili 今年的笔试真题&#xff0c;也是一道关于栈的经典面试题。经过前面文章的学习&#xff0c;我想…

让人省心的事件委托

事件委托:利用冒泡的原理把实践添加到父元素级别上&#xff0c;触发执行效果。 时间委托优点&#xff1a; 1.提高性能&#xff0c;不用for循环遍历所有li&#xff0c;节省性能。 2.新添加的元素还会有原来之前的事件。 先看时间委托提高的性能吧&#xff0c;一个常…

Python HTMLCalendar类| 带有示例的formatyearpage()方法

Python HTMLCalendar.formatyearpage()方法 (Python HTMLCalendar.formatyearpage() Method) formatyearpage() method is an inbuilt method of the HTMLCalendar class of calendar module in Python. It works on HTMLCalendar class object and returns a years calendar a…

最新版MySQL在MacOS上的实践!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在 MacOS 上安装最新版的 MySQL 有三种方法&#xff1a;使用 Docker 安装&#xff1b;使用 Homebrew 运行 brew install mys…

二进制文件的操作

所有文件的存储其实质都是二进制的&#xff0c;二进制文件往往由两部分组成&#xff0c;一部分是文件头另一部分存放了文件的内容。文件头通常存放与文件格式有关的信息&#xff0c;以BMP等图象文件为例&#xff0c;它们的文件头中存放了是何种图形格式、图象大小、调色板等信息…

【转】GitHub入门详细讲解

第一&#xff1a;请登录https://windows.github.com/ 下载您需要的安装软件&#xff0c;进行安装。安装后桌面有&#xff1a;GitHub 和 Git Shell 第二&#xff1a; 申请一个帐号https://github.com/signup/free 帐号名字要记得清楚。 其他请参考 http://www.woiweb.net/github…

简易飞机空战小游戏

#include<stdio.h> #include<stdlib.h> #include<conio.h> #include<time.h> #include<windows.h>#define width 30 //屏幕的宽 #define high 40 //屏幕的高 #define EnemyAirportNum 5 //敌机出现的数量 #define MyFly 1 …

kotlin获取属性_Kotlin程序| 属性获取器和设置器方法的示例

kotlin获取属性属性获取器和设置器方法 (Properties Getter and Setter Methods) Variable having a class-level scope, declared inside the class body but outside the functions called property. 具有类级别范围的变量&#xff0c;在类主体内部但在称为属性的函数外部声明…

忘记MySQL密码怎么办?一招教你搞定!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在安装完 MySQL 或者是在使用 MySQL 时&#xff0c;最尴尬的就是忘记密码了&#xff0c;墨菲定律也告诉我们&#xff0c;如果…

vb读出二进制文件,合并两个文件

Dim FileMe() As Byte, File1() As Byte, File2() As Byte Dim Ii As Integer, Ss As String 读入程序自身 Open App.Path & "\" & App.EXEName & ".exe" For Binary As #11 ReDim FileMe(FileLen(App.Path & "\" & App.EXE…

通讯录动态版

#include<stdio.h> #include<stdlib.h> #include<string.h>enum operation {EXIT, //退出ADD, //添加SEARCH, //查找DELETD, //删除AMEND, //修改SHOW //显示 };enum object {X_NAME, //名字X_AGE, //年龄X_TELNUMBER,//电话号码X_ADDRESS //住址 };…

icmp消息类型报告传输_ICMP消息的类型和ICMP消息格式

icmp消息类型报告传输ICMP shares error reporting and devices status by messages. Messages created by ICMP are divided into 2 categories: ICMP通过消息共享错误报告和设备状态。 ICMP创建的消息分为两类&#xff1a; 1) Error Reporting Messages 1)错误报告消息 The…

一文详解「队列」,手撸队列的3种方法!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;本文已收录至我的 Github《算法图解》系列&#xff1a;https://github.com/vipstone/algorithm前面我们介绍了栈&#xff08…

Oracle11完全卸载方法

一、在oracle11G以前卸载oracle会存在卸载不干净&#xff0c;导致再次安装失败的情况&#xff0c;在运行services.msc打开服务&#xff0c;停止Oracle的所有服务。二、 oracle11G自带一个卸载批处理\app\Administrator\product\11.2.0\dbhome_1\deinstall\deinstall.bat运行该批…

斐波拉切数列

问题陈述&#xff1a; Fibonacci为1200年代的欧洲数学家&#xff0c;在他的著作中曾经提到&#xff1a;若有一只兔子每个月生一只小兔子&#xff0c;一个月后小兔子也开始生产。起始只有一只兔子&#xff0c;一个月后就有两只兔子&#xff0c;二个月后有三只兔子&#xff0c;三…

自定义设置一个屏保程序

用C语言写一个简单的窗口程序&#xff0c;目的是生成一个可视化的图形窗口&#xff0c;需要用到EasyX库&#xff0c;可在文章末尾的网盘链接中下载。该程序退出需左击鼠标&#xff0c;否则无法退出。 #include<stdio.h> #include<stdlib.h> #include<windows.h…

JavaScript中带示例的字符串search()方法

字符串search()方法 (String search() Method) search() is method is a String method, it is used to check whether a substring exists in the given string or not. It returns the starting index of the substring from the string where substring exists. If substrin…

漫画:如何找到链表的倒数第n个结点?

————— 第二天 —————什么意思呢&#xff1f;我们以下面这个链表为例&#xff1a;给定链表的头结点&#xff0c;但并不知道链表的实际长度&#xff0c;要求我们找到链表的倒数第n个结点。假设n3&#xff0c;那么要寻找的结点就是元素1&#xff1a;如何利用队列呢&…

转:开源图形库 c语言-图形图像库 集合

Google三维API O3DO3D 是一个开源的 Web API 用来在浏览器上创建界面丰富的交互式的 3D 应用程序。这是一种基于网页的可控3D标准。此格式期望真正的基于浏览器&#xff0c;独立于操作系统之外&#xff0c;并且支持主流的3D显卡&#xff0c;这样就可以在网页中实现效果逼真的3D…

cacti添加I/O监控

首先下载snmpdiskio-0.9.6.zip,文件不好找&#xff0c;我已经放在本文章的附件里面。解压snmpdiskio-0.9.6.zip复制partition.xml到cacti/resource/snmp_queries/下面[roottest]# cp partition.xml /home/wwwroot/default/cacti/resource/snmp_queries/分别导入模板文件&#x…