forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_68.java
89 lines (80 loc) · 2.94 KB
/
_68.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.List;
/**
* 68. 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.
*/
public class _68 {
public static class Solution1 {
public List<String> fullJustify(String[] words, int L) {
ArrayList<String> result = new ArrayList();
if (words == null || words.length == 0) {
return result;
}
int count = 0;
int last = 0;
for (int i = 0; i < words.length; i++) {
if (count + words[i].length() + (i - last) > L) {
int spaceNum = 0;
int extraNum = 0;
if (i - last - 1 > 0) {
spaceNum = (L - count) / (i - last - 1);
extraNum = (L - count) % (i - last - 1);
}
StringBuilder sb = new StringBuilder();
for (int j = last; j < i; j++) {
sb.append(words[j]);
if (j < i - 1) {
for (int k = 0; k < spaceNum; k++) {
sb.append(" ");
}
if (extraNum > 0) {
sb.append(" ");
}
extraNum--;
}
}
for (int j = sb.length(); j < L; j++) {
sb.append(" ");
}
result.add(sb.toString());
count = 0;
last = i;
}
count += words[i].length();
}
StringBuilder sb = new StringBuilder();
for (int i = last; i < words.length; i++) {
sb.append(words[i]);
if (sb.length() < L) {
sb.append(" ");
}
}
for (int i = sb.length(); i < L; i++) {
sb.append(" ");
}
result.add(sb.toString());
return result;
}
}
}