-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDay-028.cpp
97 lines (90 loc) · 3.18 KB
/
Day-028.cpp
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
90
91
92
93
94
95
96
97
/*
*This problem was asked by Palantir.
Write an algorithm to justify text.
Given a sequence of words and an integer line length k,
return a list of strings which represents each line, fully justified.
More specifically, you should have as many words as possible in each line.
There should be at least one space between each word.
Pad extra spaces when necessary so that each line has exactly length k.
Spaces should be distributed as equally as possible, with the extra spaces, if any, distributed starting from the left.
If you can only fit one word on a line, then you should pad the right-hand side with spaces.
Each word is guaranteed not to be longer than k.
For example, given the list of words ["the", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"] and k = 16,
you should return the following:
["the quick brown", # 1 extra space on the left
"fox jumps over", # 2 extra spaces distributed evenly
"the lazy dog"] # 4 extra spaces distributed evenly
*
*
*
*
*
*/
#include <bits/stdc++.h>
using namespace std;
int main(void){
// vector<string>arr = {"tushar","roy","likes","to","code"};
vector<string>arr = {"the", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"};
int k = 16;
int dp[arr.size()][arr.size()];
memset(dp , -1 , sizeof(dp));
for(int i=0;i<(int)arr.size();++i){
int current_len = arr[i].size();
for(int j=i;j<(int)arr.size();++j){
if(i!=j){
current_len+=(arr[j].size());
}
if(current_len>k){
dp[i][j] = -1;
}else{
dp[i][j] = (k - current_len-(j-i))*(k- current_len-(j-i)); // j-i factor is calculating number of space
// such as if only one word is present then there will be no space needed
// but if two or more words present then we need #_of_word-1 space
// hello , world will be printed as : [hello world]
}
}
}
// printing the DP array formed
// for(int i=0;i<(int)arr.size();++i){
// int current_len = arr[i].size();
// for(int j=0;j<(int)arr.size();++j){
// cout<<dp[i][j]<<' ';
// }
// puts("");
// }
// puts("");
//
vector<int>answer(arr.size()) , path(arr.size());
int i= arr.size();
while(i--){
int j = arr.size()-1;
if(dp[i][j]!=-1){
answer[i] = dp[i][j];
path[i] = j+1; // this states that starting i till j-1 we can print . [i,j)
}else{
// now let's decrement the j
j+=1;
int min_ans = INT_MAX;
int split_point = -1;
while(j--){
if(j!=0 && dp[i][j-1]!=-1){
if(min_ans>dp[i][j-1]+answer[j]){
split_point = j;
min_ans = dp[i][j-1]+answer[j];
}
}
}
answer[i] = min_ans;
path[i] = split_point;
}
}
// let's print the answer
for(int i=0;i<arr.size();++i){
for(int j=i;j<path[i];++j){
cout<<arr[j]<<' ';
}
i = path[i]-1;
cout<<'\n';
}
return 0;
}