# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
546867 | ussef_abdallah | Type Printer (IOI08_printer) | C++14 | 56 ms | 5572 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int common(string &x, string &y) {
int mn = min(x.length(), y.length());
int cnt = 0;
for (int i = 0; i < mn; i++) {
if (x[i] == y[i])
cnt++;
else
break;
}
return cnt;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
vector<string> a(n);
string longest = "";
for (int i = 0; i < n; ++i) {
cin >> a[i];
if (a[i].length() > longest.length())
longest = a[i];
}
sort(a.begin(), a.end(), [&](string &x, string &y) {
int commonX = common(x, longest);
int commonY = common(y, longest);
if (commonX == commonY)
return x < y;
return commonX < commonY;
});
string cur = "";
vector<char> ans;
for (string &s : a) {
int sPtr = 0, curPtr = 0;
while (curPtr < cur.length() && sPtr < s.length()
&& cur[curPtr] == s[sPtr]) {
curPtr++;
sPtr++;
}
for (int j = cur.length() - 1; j >= curPtr; j--) {
cur.pop_back();
ans.push_back('-');
}
while (sPtr < s.length()) {
ans.push_back(s[sPtr]);
cur += s[sPtr];
sPtr++;
}
ans.push_back('P');
}
cout << ans.size() << '\n';
for (char &c : ans) {
cout << c << "\n";
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |