education round 20 d Magazine Ad

D. Magazine Ad
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this:

There are space-separated non-empty words of lowercase and uppercase Latin letters.

There are hyphen characters '-' in some words, their positions set word wrapping points. Word can include more than one hyphen.

It is guaranteed that there are no adjacent spaces and no adjacent hyphens. No hyphen is adjacent to space. There are no spaces and no hyphens before the first word and after the last word.

When the word is wrapped, the part of the word before hyphen and the hyphen itself stay on current line and the next part of the word is put on the next line. You can also put line break between two words, in that case the space stays on current line. Check notes for better understanding.

The ad can occupy no more that k lines and should have minimal width. The width of the ad is the maximal length of string (letters, spaces and hyphens are counted) in it.

You should write a program that will find minimal width of the ad.

Input

The first line contains number k (1 ≤ k ≤ 105).

The second line contains the text of the ad — non-empty space-separated words of lowercase and uppercase Latin letters and hyphens. Total length of the ad don't exceed 106 characters.

Output

Output minimal width of the ad.

Examples
Input
Copy
4
garage for sa-le
Output
Copy
7
Input
Copy
4
Edu-ca-tion-al Ro-unds are so fun
Output
Copy
10
Note

Here all spaces are replaced with dots.

In the first example one of possible results after all word wraps looks like this:

garage.
for.
sa-
le

The second example:

Edu-ca-
tion-al.
Ro-unds.
are.so.fun

题目大意:

给你一个k,一列字符串。这个字符串中,空格和连字符-都是标志一个单词的结束。然后让你将这个字符串分成最多k块。使得长度最长的内个块的长度尽可能的小。分块时,只能在空格处和连字符处断开.

思路:

一个典型的最大值最小值问题。设长度最长的单词长度为maxn,字符串长度为num.则答案必定在maxn与num之间。那么就二分答案。每次判断mid,此时的mid就是块划分的依据,用sum累加,当加上下一个单词大于mid时,就产生了一个块.最后判断这个块是否成立,成立说明这个划分依据大了,那就r=mid-1,继续判断.最后输出l,就是最佳划分

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#include<math.h>
#define ll long long
using namespace std;
const int inf=0x3f3f3f3f;
const int N =1e6+5;
char a[N];
int loc[N];
int cnt;
bool judge(int mid,int k)
{
    int cc=0;
    ll sum=0;
    for(int i=0;i<cnt;i++)
    {
        sum+=loc[i];
        if(sum>mid)//每当超过mid,那就产生一个块,块数量cc加1
        {
            cc++;
            sum=loc[i];
            if(cc>=k)//要注意最后的cc如果等于k,那就代表着此时有cc+1个划分快,不满足条件
            {
                return false;
            }
        }
    }
    return true;
}
int main()
{
    int k;
    cin>>k;
    getchar();
    gets(a);
    int num=strlen(a);
    //cout<<num<<endl;
    int maxn=1;
    cnt=0;
    int sign=-1;
    for(int i=0;i<num;i++)
    {
        if(a[i]==' '||a[i]=='-')
        {
           loc[cnt++]=i-sign;//先预处理出每个单词的长度,注意这个长度是带上空格或者连字符的
           maxn=max(maxn,i-sign);
           sign=i;
        }
    }
    loc[cnt++]=num-sign-1;
    maxn=max(maxn,num-sign-1);
    int l=maxn,r=num;//答案必定在maxn与num之间。
    while(l<=r)//开始二分答案
    {
       //cout<<l<<' '<<r<<endl;
        int mid=(l+r)>>1;
        if(judge(mid,k))
            r=mid-1;
        else
            l=mid+1;
    }
    cout<<l<<endl;
    return 0;
}


GitHub Education是GitHub为学生提供的教育优惠计划。通过这个计划,学生可以获得一系列的开发工具和资源,帮助他们在学习和开发过程中更加高效地使用GitHub。学生可以通过申请GitHub Education Pack来获得这些优惠。申请成功后,学生将收到一封名为"Powerup get! Welcome to the Student Developer Pack."的邮件,证明他们成功获得了优惠。接下来,学生可以打开链接https://education.github.com/pack/offers,查看他们所获得的优惠内容。\[2\]在申请GitHub Education Pack时,学生需要提供一些相关的材料,例如学生证明或学信网档案。其中,学生可以选择在学信网上下载并修改学信网档案,然后使用手机拍照上传。在类型选择中,可以选择"Other",并填写"Ministry of Education student status online verification report"。\[3\]通过这些步骤,学生可以成功申请并享受GitHub Education提供的优惠。 #### 引用[.reference_title] - *1* *2* [GitHub Education Tools (学生包)申请教程 & Digital Ocean 50美元优惠码使用教程](https://blog.csdn.net/dta0502/article/details/81262127)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [关于GitHub Education(GitHub教育认证)认证](https://blog.csdn.net/qq_41145669/article/details/127987622)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值