forked from mpfeifer1/Kattis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdyslectionary.cpp
55 lines (47 loc) · 1 KB
/
dyslectionary.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
#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
using namespace std;
void process(vector<string>& v) {
// Find the max length for each string
int maxlen = 0;
for(auto i : v) {
if(i.length() > maxlen) {
maxlen = i.length();
}
}
// Reverse each string, sort, flip them back
for(auto& i : v) {
reverse(i.begin(), i.end());
}
sort(v.begin(), v.end());
for(auto& i : v) {
reverse(i.begin(), i.end());
}
// Pad all strings with spaces
for(auto& i : v) {
string temp;
temp.resize(maxlen - i.length(), ' ');
temp += i;
swap(i, temp);
}
// Print the strings
for(auto i : v) {
cout << i << endl;
}
}
int main() {
string s;
vector<string> v;
while(getline(cin, s)) {
if(s == "") {
process(v);
cout << endl;
v.clear();
continue;
}
v.push_back(s);
}
process(v);
}