# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
314330 | 2020-10-19T17:49:08 Z | ShiftyBlock | Type Printer (IOI08_printer) | C++17 | 1000 ms | 3064 KB |
#include <bits/stdc++.h> using namespace std; #define f first #define s second #define pii pair<int, int> #define long long long #define v vector #define rep(i,a,b) for(int i=a; i<b; i++) void setIO(string name, int submit) { if (submit) { ios_base::sync_with_stdio(0); cin.tie(0); freopen((name + ".in").c_str(), "r", stdin); freopen((name + ".out").c_str(), "w", stdout); } else{ ios_base::sync_with_stdio(0); cin.tie(0); } } string longest; bool compare(string a, string b){ int samea=0; int sameb=0; rep(j,0, a.size()){ if(longest[j]==a[j]) samea++; else break; } rep(j,0, b.size()){ if(longest[j]==b[j]) sameb++; else break; } if(samea==sameb){ int cmp= a.compare(b); if(cmp<0) return true; else return false; } return samea<sameb; } int main() { setIO("printer", 0); int N; cin>>N; v<string> arr; int worst=0; for (int i = 0; i < N; ++i) { string line; cin>>line; arr.push_back(line); if(arr[worst].size()<line.size()){ worst=i; } } int basecost=0; longest= arr[worst]; sort(arr.begin(), arr.end(), compare); rep(i,0,N){ int len=arr[i].size();int plen=arr[i-1].size(); if(i==0){ basecost+=len; basecost++; } else{ int same=0; rep(j,0, min(plen, len)){ if(arr[i-1][j]==arr[i][j]) same++; else break; } basecost+=plen-same; basecost+=len-same; basecost++; } } longest=arr[worst]; cout<<basecost<<endl; rep(i, 0,N){ int len=arr[i].size(); int plen=arr[i-1].size(); if(i==0){ rep(j,0,len){ cout<<arr[i][j]<<endl; } cout<<"P"<<endl; } else{ int same=0; rep(j,0, min(plen,len)){ if(arr[i-1][j]==arr[i][j]) same++; else break; } rep(j,0, plen-same) { cout<<"-"<<endl; } rep(j,same, len){ cout<<arr[i][j]<<endl; } cout<<"P"<<endl; } } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 1 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 384 KB | Output is correct |
2 | Correct | 17 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 32 ms | 384 KB | Output is correct |
2 | Correct | 40 ms | 384 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 118 ms | 664 KB | Output is correct |
2 | Correct | 249 ms | 1048 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 303 ms | 1164 KB | Output is correct |
2 | Correct | 103 ms | 964 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 787 ms | 1760 KB | Output is correct |
2 | Execution timed out | 1035 ms | 2744 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 613 ms | 1792 KB | Output is correct |
2 | Execution timed out | 1053 ms | 3064 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |