Hexo hiho-148

hiho-148

描述

Steven loves reading book on his phone. The book he reads now consists of N paragraphs and the i-th paragraph contains ai characters.

Steven wants to make the characters easier to read, so he decides to increase the font size of characters. But the size of Steven’s phone screen is limited. Its width is W and height is H. As a result, if the font size of characters is S then it can only show ⌊W / S⌋ characters in a line and ⌊H / S⌋ lines in a page. (⌊x⌋ is the largest integer no more than x)

So here’s the question, if Steven wants to control the number of pages no more than P, what’s the maximum font size he can set? Note that paragraphs must start in a new line and there is no empty line between paragraphs.

输入

Input may contain multiple test cases.

The first line is an integer TASKS, representing the number of test cases.

For each test case, the first line contains four integers N, P, W and H, as described above.

The second line contains N integers a1, a2, … aN, indicating the number of characters in each paragraph.

For all test cases,

1 <= N <= 103,

1 <= W, H, ai <= 103,

1 <= P <= 106,

There is always a way to control the number of pages no more than P.

输出

For each testcase, output a line with an integer Ans, indicating the maximum font size Steven can set.

枚举解

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
int nTask;
cin>>nTask;
int n,p,w,h,wn,hn;
int a[1001];
int nLine,nPage;
for (int iTask = 0; iTask < nTask; iTask ++)
{
cin>>n>>p>>w>>h;
for (int i = 0; i < n; i++) cin>>a[i];
int maxS = min(w,h);
for (int s = 1; s <= maxS; s++)
{
nLine=0;
wn = w/s;
hn = h/s;
for (int i = 0; i < n; i++)
{
nLine += (wn-1+a[i])/wn;
}
nPage = (nLine+hn-1)/hn;
if (nPage > p)
{
cout<<s-1<<endl;
break;
}
if (s==maxS)
{
cout<<s<<endl;
break;
}
}
}
return 0;
}