Text Justification
Problem Statement :
Given an array of strings words and a width maxWidth, format the text such that each line has exactly maxWidth characters and is fully (left and right) justified. You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces ' ' when necessary so that each line has exactly maxWidth characters. Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line does not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right. For the last line of text, it should be left-justified, and no extra space is inserted between words. Note: A word is defined as a character sequence consisting of non-space characters only. Each word's length is guaranteed to be greater than 0 and not exceed maxWidth. The input array words contains at least one word. Example 1: Input: words = ["This", "is", "an", "example", "of", "text", "justification."], maxWidth = 16 Output: [ "This is an", "example of text", "justification. " ] Example 2: Input: words = ["What","must","be","acknowledgment","shall","be"], maxWidth = 16 Output: [ "What must be", "acknowledgment ", "shall be " ] Explanation: Note that the last line is "shall be " instead of "shall be", because the last line must be left-justified instead of fully-justified. Note that the second line is also left-justified because it contains only one word. Example 3: Input: words = ["Science","is","what","we","understand","well","enough","to","explain","to","a","computer.","Art","is","everything","else","we","do"], maxWidth = 20 Output: [ "Science is what we", "understand well", "enough to explain to", "a computer. Art is", "everything else we", "do " ] Constraints: 1 <= words.length <= 300 1 <= words[i].length <= 20 words[i] consists of only English letters and symbols. 1 <= maxWidth <= 100 words[i].length <= maxWidth
Solution :
Solution in C :
#define RES_LEN 300
char ** fullJustify(char ** words, int wordsSize, int maxWidth, int* returnSize){
int spaces, pad, remainSpaces, lWidth, cWordLen;
// allocate memory for the result
char **res = calloc(sizeof(char *), RES_LEN);
for(int i = 0; i < RES_LEN; i++)
res[i] = calloc(sizeof(char), maxWidth + 1);
*returnSize = 0;
int cLen = 0;
for(int l = 0, r; l < wordsSize; l = r) {
// find words that can fit to form a current line in result
r = l;
lWidth = 0;
cWordLen = strlen(words[r]);
while(r < wordsSize && cWordLen + lWidth + r - l <= maxWidth) {
lWidth += cWordLen;
r++;
if(r < wordsSize)
cWordLen = strlen(words[r]);
}
// calculate the spaces and extra spaces to pad after each word in this line
spaces = 1;
pad = 0;
if(r - l != 1 && r != wordsSize) {
spaces = (maxWidth - lWidth) / (r - l - 1);
pad = (maxWidth - lWidth) % (r - l - 1);
}
// Now, words from left to right pointers can be added to current line by justifying.
// Add the left most word first. Then, add all the spaces and extra padded spaces.
// Then, add the next word
cLen = 0;
cLen += sprintf(res[*returnSize], "%s", words[l]);
for(int w = l + 1; w < r; w++) {
for(int i = 0; i < spaces; i++) // append spaces after current word
cLen += sprintf(res[*returnSize] + cLen, "%c", ' ');
// pad extra space for words in line from left to right
if(pad-- > 0) // append extra padded spaces in left justified manner
cLen += sprintf(res[*returnSize] + cLen, "%c", ' ');
cLen += sprintf(res[*returnSize] + cLen, "%s", words[w]);
}
// Adjust the last line by appending remaining spaces to the right
remainSpaces = maxWidth - cLen;
for(int i = 0; i < remainSpaces; i++)
cLen += sprintf(res[*returnSize] + cLen, "%c", ' ');
(*returnSize)++;
}
return res;
}
Solution in C++ :
class Solution {
public:
std::vector<std::string> fullJustify(std::vector<std::string>& words, int maxWidth) {
std::vector<std::string> res;
std::vector<std::string> cur;
int num_of_letters = 0;
for (std::string word : words) {
if (word.size() + cur.size() + num_of_letters > maxWidth) {
for (int i = 0; i < maxWidth - num_of_letters; i++) {
cur[i % (cur.size() - 1 ? cur.size() - 1 : 1)] += ' ';
}
res.push_back("");
for (std::string s : cur) res.back() += s;
cur.clear();
num_of_letters = 0;
}
cur.push_back(word);
num_of_letters += word.size();
}
std::string last_line = "";
for (std::string s : cur) last_line += s + ' ';
last_line = last_line.substr(0, last_line.size()-1); // remove trailing space
while (last_line.size() < maxWidth) last_line += ' ';
res.push_back(last_line);
return res;
}
};
Solution in Java :
public class Solution {
public List<String> fullJustify(String[] words, int maxWidth) {
List<String> res = new ArrayList<>();
List<String> cur = new ArrayList<>();
int num_of_letters = 0;
for (String word : words) {
if (word.length() + cur.size() + num_of_letters > maxWidth) {
for (int i = 0; i < maxWidth - num_of_letters; i++) {
cur.set(i % (cur.size() - 1 > 0 ? cur.size() - 1 : 1), cur.get(i % (cur.size() - 1 > 0 ? cur.size() - 1 : 1)) + " ");
}
StringBuilder sb = new StringBuilder();
for (String s : cur) sb.append(s);
res.add(sb.toString());
cur.clear();
num_of_letters = 0;
}
cur.add(word);
num_of_letters += word.length();
}
StringBuilder lastLine = new StringBuilder();
for (int i = 0; i < cur.size(); i++) {
lastLine.append(cur.get(i));
if (i != cur.size() - 1) lastLine.append(" ");
}
while (lastLine.length() < maxWidth) lastLine.append(" ");
res.add(lastLine.toString());
return res;
}
}
Solution in Python :
class Solution:
def fullJustify(self, words: List[str], maxWidth: int) -> List[str]:
res, line, width = [], [], 0
for w in words:
if width + len(w) + len(line) > maxWidth:
for i in range(maxWidth - width): line[i % (len(line) - 1 or 1)] += ' '
res, line, width = res + [''.join(line)], [], 0
line += [w]
width += len(w)
return res + [' '.join(line).ljust(maxWidth)]
View More Similar Problems
Tree: Level Order Traversal
Given a pointer to the root of a binary tree, you need to print the level order traversal of this tree. In level-order traversal, nodes are visited level by level from left to right. Complete the function levelOrder and print the values in a single line separated by a space. For example: 1 \ 2 \ 5 / \ 3 6 \ 4 F
View Solution →Binary Search Tree : Insertion
You are given a pointer to the root of a binary search tree and values to be inserted into the tree. Insert the values into their appropriate position in the binary search tree and return the root of the updated binary tree. You just have to complete the function. Input Format You are given a function, Node * insert (Node * root ,int data) { } Constraints No. of nodes in the tree <
View Solution →Tree: Huffman Decoding
Huffman coding assigns variable length codewords to fixed length input characters based on their frequencies. More frequent characters are assigned shorter codewords and less frequent characters are assigned longer codewords. All edges along the path to a character contain a code digit. If they are on the left side of the tree, they will be a 0 (zero). If on the right, they'll be a 1 (one). Only t
View Solution →Binary Search Tree : Lowest Common Ancestor
You are given pointer to the root of the binary search tree and two values v1 and v2. You need to return the lowest common ancestor (LCA) of v1 and v2 in the binary search tree. In the diagram above, the lowest common ancestor of the nodes 4 and 6 is the node 3. Node 3 is the lowest node which has nodes and as descendants. Function Description Complete the function lca in the editor b
View Solution →Swap Nodes [Algo]
A binary tree is a tree which is characterized by one of the following properties: It can be empty (null). It contains a root node only. It contains a root node with a left subtree, a right subtree, or both. These subtrees are also binary trees. In-order traversal is performed as Traverse the left subtree. Visit root. Traverse the right subtree. For this in-order traversal, start from
View Solution →Kitty's Calculations on a Tree
Kitty has a tree, T , consisting of n nodes where each node is uniquely labeled from 1 to n . Her friend Alex gave her q sets, where each set contains k distinct nodes. Kitty needs to calculate the following expression on each set: where: { u ,v } denotes an unordered pair of nodes belonging to the set. dist(u , v) denotes the number of edges on the unique (shortest) path between nodes a
View Solution →