| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 648887 | Spade1 | Type Printer (IOI08_printer) | C++14 | 26 ms | 3568 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>
#define pii pair<int, int>
#define pll pair<long long, long long>
#define ll long long
#define ld long double
#define st first
#define nd second
#define pb push_back
#define INF INT_MAX
using namespace std;
const int N = 3e5 + 10;
vector<string> v, v2;
vector<char> ans;
int pre[N];
void solve() {
int n; cin >> n;
for (int i = 0; i < n; ++i) {
string s; cin >> s;
v.pb(s);
}
sort(v.begin(), v.end());
int l = 0, mx = 0;
for (int i = 0; i < n; ++i)
if (v[i].size() > mx)
l = i, mx = v[i].size();
for (int i = 0; i < n; ++i)
for (int j = 0; j < v[i].size(); ++j)
if (v[i][j] == v[l][j]) pre[i]++;
else break;
for (int j = 0; j <= 20; ++j) {
for (int i = 0; i < n; ++i) {
if (pre[i] == j) v2.pb(v[i]);
}
}
for (int i = 1; i < n; ++i) {
pre[i] = 0;
for (int j = 0; j < 20; ++j) {
if (v[i][j] == v[i-1][j]) pre[i]++;
else break;
}
}
for (auto i : v2[0]) ans.pb(i);
ans.pb('P');
for (int i = 1; i < n; ++i) {
for (int j = pre[i]; j < v2[i-1].size(); ++j) ans.pb('-');
for (int j = pre[i]; j < v2[i].size(); ++j) ans.pb(v2[i][j]);
ans.pb('P');
}
cout << ans.size() << '\n';
for (auto i : ans) cout << i << '\n';
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(NULL);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
}
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... | ||||
