zoukankan      html  css  js  c++  java
  • leetcode@ [68] Text Justification (String Manipulation)

    https://leetcode.com/problems/text-justification/

    Given an array of words and a length L, format the text such that each line has exactly L 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 L characters.

    Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line do 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.

    For example,
    words: ["This", "is", "an", "example", "of", "text", "justification."] L = 16.

    Return the formatted lines as:

    [
       "This    is    an",
       "example  of text",
       "justification.  "
    ]

    Note: Each word is guaranteed not to exceed L in length.

    Corner Cases:

    A line other than the last line might contain only one word. What should you do in this case?
    In this case, that line should be left-justified.

    class Solution {
    public:
        string func(int len) {
            string res = "";
            while(len--) res += " ";
            return res;
        }
        vector<string> fullJustify(vector<string>& words, int maxWidth) {
            vector<string> res; res.clear();
            
            //Assuming that the length of longest string in the words must be shorter or equal to maxWidth.
            int len = 0;
            int i = 0, size = words.size();
            while(i < size) {
                if(len + words[i].length() == maxWidth) {
                    len = 0;
                    res.push_back(words[i]);
                    ++i;
                }
                else if(len + words[i].length() < maxWidth) {
                    len = len + words[i].length();
                    int left = i;
                    while(i+1 < words.size() && len+1+words[i+1].length() <= maxWidth) {
                        len += 1+words[i+1].length();
                        ++i;
                    }
                    len = 0;
                    int right = i, tot_len = 0, tot_empty_len, each_empty_len, remain_empty_len;
                    
                    for(int k = left;k <= right; ++k) tot_len += words[k].length();
                    
                    tot_empty_len = maxWidth - tot_len;
                    each_empty_len = (left == right)? tot_empty_len: tot_empty_len / (right-left);
                    remain_empty_len = tot_empty_len - each_empty_len * (right-left);
                    
                    string r = "";
                    if(left == right) {
                        string tmp = func(tot_empty_len);
                        r += words[left] + tmp;
                        res.push_back(r);
                    }
                    else {
                        string tmp;
                        if(right <= size - 2) {
                            for(int k = left; k <= right - 1; ++k) {
                                if(remain_empty_len > 0) {
                                    tmp = func(each_empty_len+1);
                                    remain_empty_len--;
                                }
                                else tmp = func(each_empty_len);
                                r += words[k] + tmp;
                            }
                            r += words[right];
                            res.push_back(r);    
                        }
                        else {
                            for(int k = left; k <= right - 1; ++k) {
                                tmp = func(1);
                                r += words[k] + tmp;
                            }
                            r += words[right];
                            if(r.length() < maxWidth) r += func(maxWidth - r.length());
                            res.push_back(r);
                        }
                    }
                    ++i;
                }
            }// end while
            
            return res;
        }
    };
    leetcode 68: Text Justification
  • 相关阅读:
    软考下午题具体解释---数据流图设计
    透视表提取不反复记录(4)-每一个物品的最大值
    运用python抓取博客园首页的所有数据,而且定时持续抓取新公布的内容存入mongodb中
    [经验总结]material design效果与开发总结
    cocos2d-x 3.0 回调函数
    P1334 瑞瑞的木板
    P2776 [SDOI2007]小组队列
    P1886 滑动窗口
    P1160 队列安排
    P1823 音乐会的等待
  • 原文地址:https://www.cnblogs.com/fu11211129/p/5016959.html
Copyright © 2011-2022 走看看