CodeForces - 803D 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
4
garage for sa-le
output
7
input
4
Edu-ca-tion-al Ro-unds are so fun
output
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,和字符串,字符串中有空格以及分隔符-,字符串可以在遇到空格或分隔符时选择换行,空格和分隔符保留在此行末尾。要求最多分出n行,求分完后的宽度最小。宽度是指分割后的几个字符串中最长字符串的长度。 保证首尾没有分隔符和空格。

思路:事先记录分隔符与空格分开的每一断字符的长度。 先将字符串平均分成k段,分割后的长度为l。l即为可能的最小长度。原字符串长度r可能为最大长度。然后在l和r之间进行二分,搜索符合条件的最小值。 具体如何判断,看代码吧!

#include<stdio.h>
#include<vector>
#include<iostream>
using namespace std;
int k;
vector<int> v;
string s;
bool check(int x)
{
	int cnt=0;
	int len=0;
	int i;
	for(i=0;i<v.size();i++)
	{
		if(v[i]>x)
			return 0;
		if(v[i]+len>x)
		{
			cnt++;
			len=v[i];
		}
		else if(v[i]+len==x)
		{
			cnt++;
			len=0;
		}
		else if(v[i]+len<x)
		{
			len+=v[i];
		}
	}
	if(len)
		cnt++;
	return cnt<=k;
}
void slove()
{
	int r=s.size(),l=r/k;
	int mid=0;
	while(r-l>0)
	{
		mid=(l+r)/2;
		if(check(mid))
			r=mid;
		else
			l=mid+1;
	}
	printf("%d\n",l);
}
int main()
{
	while(scanf("%d",&k)!=EOF)
	{
		v.clear();
		getchar();
		getline(cin,s);
		int i,j;
		for(i=0,j=0;i<s.size();i++)
		{
			if(s[i]==' '||s[i]=='-')
			{
				v.push_back(j+1);
				j=0;
			}
			else
				j++;
		}
		v.push_back(j);
		slove();
	}
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值