# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
237244 | 2020-06-05T11:57:57 Z | wildturtle | Type Printer (IOI08_printer) | C++17 | 1000 ms | 40208 KB |
#include<bits/stdc++.h> using namespace std; long long n,k,maxx,idx; pair < long long, string > A[500005]; string s1,s[500005]; vector < char> v; int main() { ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0); cin>>n; for(long long i=1;i<=n;i++) { cin>>s[i]; if(maxx<s[i].size()) { maxx=s[i].size(); s1=s[i]; } } for(long long i=1;i<=n;i++) { A[i].second=s[i]; k=0; for(long long j=0;j<s[i].size();j++) if(s[i][j]!=s1[j]) break; else k++; A[i].first=k; } sort(A+1,A+1+n); idx=0; for(long long i=1;i<=n;i++) { for(long long j=idx;j<A[i].second.size();j++) v.push_back(A[i].second[j]); v.push_back('P'); if(i==n) break; idx=A[i].second.size(); for(long long j=0;j<A[i].second.size();j++) { if(A[i].second[j]!=A[i+1].second[j]) { idx=j; break; } } for(long long j=idx;j<A[i].second.size();j++) v.push_back('-'); } cout<<v.size()<<endl; for(long long i=0;i<v.size();i++) cout<<v[i]<<endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 25 ms | 35584 KB | Output is correct |
2 | Correct | 24 ms | 35584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 25 ms | 35584 KB | Output is correct |
2 | Correct | 25 ms | 35584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 25 ms | 35584 KB | Output is correct |
2 | Correct | 26 ms | 35636 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 25 ms | 35584 KB | Output is correct |
2 | Correct | 25 ms | 35584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 32 ms | 35584 KB | Output is correct |
2 | Correct | 40 ms | 35584 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 52 ms | 35584 KB | Output is correct |
2 | Correct | 61 ms | 35704 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 130 ms | 35808 KB | Output is correct |
2 | Correct | 247 ms | 36248 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 292 ms | 36212 KB | Output is correct |
2 | Correct | 106 ms | 36088 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 667 ms | 37260 KB | Output is correct |
2 | Execution timed out | 1098 ms | 39772 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 541 ms | 36468 KB | Output is correct |
2 | Execution timed out | 1097 ms | 40208 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |