zoukankan      html  css  js  c++  java
  • [LeetCode] 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:
        vector<string> fullJustify(vector<string> &words, int L) {
            int len = words.size();
            vector<string> res;
            if(len == 0){
                string s(L,' ');
                res.push_back(s);
                return res;
            }
    
            int start=0,end=0;
            string s;
            for(int index=0;end<len;){
                start = index; 
                int NewLen = words[start].size();            
                while(index<len-1 && NewLen <= L){
                    NewLen += (words[++index].size()+1);
                }
                end = index;
                if(index == len-1 && NewLen <= L)
                    end = len;
    
                int numOfBlank = L;              //计算空格的个数
                for(int j= start;j<end;j++){
                    numOfBlank -= words[j].size();
                }
    
                string s(words[start]);             
                if(end != len && end-start>1){
                    int lenOfEveryBlank = numOfBlank/(end-start-1);
                    while(start<end-1 && numOfBlank > lenOfEveryBlank*(end-start-1)){
                        start++;
                        s += (blank(lenOfEveryBlank+1)+words[start]);
                        numOfBlank -= (lenOfEveryBlank+1);
                    }//end while
                    while(start<end-1 ){
                        start++;
                        s += (blank(lenOfEveryBlank)+words[start]);
                        numOfBlank -= lenOfEveryBlank;
                    }//end while
                    res.push_back(s);
                    s.clear();                             
                }else if(end != len && end-start==1){
                    s += blank(L-words[start].size());
                    res.push_back(s);
                    s.clear();
                }else{
                    
                    while(start<end-1){
                      start++;
                      s += (" "+words[start]);
                    
                    }
                    s += blank(L-s.size());
                    res.push_back(s);
                    s.clear();
                }                    
            }//end for
            return res;
        }//end func
    private:
        string blank(int n){
        
            string s(n,' ');
            return s;
        
        }//end func
    };
  • 相关阅读:
    [清华集训2016]温暖会指引我们前行——LCT+最大生成树
    BZOJ1415[Noi2005]聪聪和可可——记忆化搜索+期望dp
    NOIP2018游记
    BZOJ4832[Lydsy1704月赛]抵制克苏恩——期望DP
    BZOJ1906树上的蚂蚁&BZOJ3700发展城市——RMQ求LCA+树链的交
    BZOJ2822[AHOI2012]树屋阶梯——卡特兰数+高精度
    BZOJ4001[TJOI2015]概率论——卡特兰数
    BZOJ1805[Ioi2007]Sail船帆——线段树+贪心
    [IOI2018]排座位——线段树
    BZOJ3718[PA2014]Parking——树状数组
  • 原文地址:https://www.cnblogs.com/Xylophone/p/3920399.html
Copyright © 2011-2022 走看看