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 NN words (1≤N≤1001≤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 KK (1≤K≤801≤K≤80) characters, not counting spaces. Fortunately, Bessie's word processor can handle this requirement, using the following strategy:
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!
The first line of input contains two space-separated integers NN and K.K.The next line contains NN words separated by single spaces. No word will ever be larger than KK characters, the maximum number of characters on a line.
Bessie's essay formatted correctly.
10 7 hello my name is Bessie and this is my essay
hello my name is Bessie and this is my essay
Including "hello" and "my", the first line contains 7 non-space characters. Adding "name" would cause the first line to contain 11>711>7 non-space characters, so it is placed on a new line.
Problem credits: Nathan Pinsker
Problem credits: Brian Dean
[/hide]
(Analysis by Benjamin Qi)
Just simulate the described process. Maintain the number of non-space characters on your current line (denoted by ww in the code below). If adding the next word would cause the number of non-space characters to exceed KK, then place it on a new line.
Dhruv Rohatgi's code (modified by Ben):
with open("word.in","r") as fin: L = list(fin) N,K = map(int,L[0].split()) with open("word.out","w") as fout: w = 0 # current length of line for c in L[1].split(): # go through each word if w+len(c) > K: # place on new line fout.write("\n"+c) w = len(c) else: # place on current line if w > 0: fout.write(" ") fout.write(c) w += len(c) fout.write("\n")
[/hide]
翰林课程体验,退费流程快速投诉邮箱: yuxi@linstitute.net 沪ICP备2023009024号-1