GDUT_排位赛题解报告_第3场_E. Word Processor

题目:

E. Word Processor
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Bessie the cow is working on an essay for her writing class. Since her handwriting is quite bad, she decides to type the essay using a word processor.

The essay contains N words (1≤N≤100), separated by spaces. Each word is between 1 and 15 characters long, inclusive, and consists only of uppercase or lowercase letters. According to the instructions for the assignment, the essay has to be formatted in a very specific way: each line should contain no more than K (1≤K≤80) characters, not counting spaces. Fortunately, Bessie’s word processor can handle this requirement, using the following strategy:

If Bessie types a word, and that word can fit on the current line, put it on that line.

Otherwise, put the word on the next line and continue adding to that line. Of course, consecutive words on the same line should still be separated by a single space. There should be no space at the end of any line.

Unfortunately, Bessie’s word processor just broke. Please help her format her essay properly!

Input
The first line of input contains two space-separated integers N and K.
The next line contains N words separated by single spaces. No word will ever be larger than K characters, the maximum number of characters on a line.

Output
Bessie’s essay formatted correctly.

Example
inputCopy
10 7
hello my name is Bessie and this is my essay
outputCopy
hello my
name is
Bessie
and this
is my
essay
Note
Including “hello” and “my”, the first line contains 7 non-space characters. Adding “name” would cause the first line to contain 11>7 non-space characters, so it is placed on a new line.

题意:给出单词数和一行最多不能超过字母数,然后让你按照样例那样输出,题意很明白。

要做到这个,用到string,然后记录一下是否会超,会就换行,然后当前长度计数清零,否则就输出,同时长度计数加上当前单词的长度。

代码:

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <string>
#include <climits>
#include <queue>
#include <stack>
#include <map>
//鬼畜头文件
using namespace std;
const int INF = 0x3f3f3f3f;
const int mod = 1e9+7;
typedef unsigned long long ULL;
typedef long long LL;
//鬼畜define
map<int ,string>all;
int location[101];
int n,m;
int main()
{
	scanf("%d %d",&n,&m);
	int len=0;
	int point=1;
	for(int time=0;time<n;time++)
	{
		cin>>all[time];
		if(len+all[time].size()<=m)
		{
			len+=all[time].size();
		}
		else
		{
			len=all[time].size();
			point++;
		}
		location[time]=point;
		//printf("%d %d %d %d\n",time,point,len,all[time].size());
	}
	for(int time=0;time<n-1;time++)
	{
		cout<<all[time]<<' ';
		if(location[time]!=location[time+1])
		{
			printf("\n");
		}
	}
	cout<<all[n-1]<<'\n';
 
 
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值