微軟2016校園招聘4月線上筆試 hihocoder 1288 Font Size (模擬)
描述
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.
2
1 10 4 3
10
2 10 4 3
10 10
樣例輸出
3
2
題目連結:http://hihocoder.com/problemset/problem/1288
題目大意:n段文章,每段文章ai個字,手機尺寸是w*h的,現在要放大字型,字型為s時每行可以顯示w/s向下取整個字,每頁可以顯示h/s向下取整個行,求分頁不超過p時字型最大可以為多少。
題目分析:資料很小,直接列舉,算出每次一共要多少行,然後再算要多少頁。
#include <cstdio>
#include <algorithm>
#define ll long long
using namespace std;
int const MAX = 1e3 + 5;
ll a[MAX];
int main()
{
int T;
scanf("%d", &T);
while(T --)
{
ll n, p, w, h;
ll sum = 0;
scanf("%lld %lld %lld %lld", &n, &p, &w, &h);
for(int i = 0; i < n; i++)
scanf("%lld", &a[i]);
ll mi = min(w, h);
ll ans = 0, tot, perline, line, perpg, pg;
for(ll i = mi; i >= 1; i--)
{
tot = 0;
perline = w / i;
for(int j = 0; j < n; j++)
{
line = a[j] / perline + (a[j] % perline != 0);
tot += line;
}
perpg = h / i;
pg = tot / perpg + (tot % perpg != 0);
if(pg <= p)
{
ans = i;
break;
}
}
printf("%lld\n", ans);
}
}
相關文章
- 微軟2016校園招聘4月線上筆試 hihocoder 1289 403 Forbidden微軟筆試ORB
- 微軟2016校園招聘4月線上筆試 hihocoder 1290 Demo Day (dp)微軟筆試
- 各大IT公司2012校園招聘筆試面試整理筆試面試
- 華為2016校園招聘上機筆試題:簡單錯誤記錄 [python]筆試Python
- 2016微軟4月線上筆試題微軟筆試
- 校園招聘的思考
- 【JAVA】【華為校園招聘筆試-軟體】2020-09-09Java筆試
- 【校園招聘】一道筆試題看c++中virtual覆蓋筆試C++
- 【編碼】Font Size-微軟實習筆試程式設計題(一)-2016.04.06微軟筆試程式設計
- 百度2011.10.16校園招聘會筆試題筆試
- 【JAVA】騰訊2021校園招聘-後臺&綜合-第二次筆試Java筆試
- 百度2013校園招聘筆試題[軟體研發]及答案筆試
- 微軟windows 7推向校園微軟Windows
- 【小米集團校園招聘】射頻測試工程師 (急招)工程師
- [小米集團校園招聘] 射頻測試工程師 (急招)工程師
- CSS:font-size(轉)CSS
- [廣州、成都、武漢] 多益網路22屆校園招聘 程式類10+崗位(直通筆試!)筆試
- 2014百度校園招聘筆試題(上海軟體研發工程師)筆試工程師
- hihocoder 1039 字元消除 (列舉+模擬)字元
- CSS font-size屬性CSS
- hihocoder 1264 神奇字串 (列舉+模擬)字串
- 動態生成HTML元素-模擬線上考試功能HTML
- 華為2018屆校園招聘筆試題目以及相應程式碼分享 軟體開發崗位筆試
- 【資料庫】網易校園招聘筆試題--資料庫事務的定義,屬性,以及隔離級別資料庫筆試
- 駕駛員理論技巧線上模擬考試系統
- NOIP模擬96(多校29)
- NOIP模擬92(多校25)
- NOIP模擬88(多校21)
- NOIP模擬83(多校16)
- NOIP模擬86(多校19)
- 【演算法】2013創新工場校園招聘筆試題--如何求出帶環連結串列的入口節點演算法筆試
- 【小米集團校園招聘】IoT 軟體專案經理
- [小米集團校園招聘] IoT 軟體專案經理
- 2017年校招全國統一模擬筆試(第五場)程式設計題集合筆試程式設計
- 【小米集團校園招聘】iOS 開發工程師 (急招)iOS工程師
- 【小米集團校園招聘】嵌入式工程師 (急招)工程師
- [小米集團校園招聘] 嵌入式工程師 (急招)工程師
- [小米集團校園招聘] iOS 開發工程師 (急招)iOS工程師