답안 #489019

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
489019 2021-11-21T03:56:04 Z JerryLiu06 Type Printer (IOI08_printer) C++17
10 / 100
57 ms 35664 KB
// https://oj.uz/problem/view/IOI08_printer

#include <bits/stdc++.h>
 
using namespace std;
 
using ll = long long;
using ld = long double;
using db = double;
using str = string;
 
using pi = pair<int, int>;
using pl = pair<ll, ll>;
using pd = pair<db, db>;
 
using vi = vector<int>;
using vb = vector<bool>;
using vl = vector<ll>;
using vd = vector<db>;
using vs = vector<str>;
using vpi = vector<pi>;
using vpl = vector<pl>;
using vpd = vector<pd>;
 
#define FASTIO ios_base::sync_with_stdio(false); cin.tie(0);
#define FASTIOF ios_base::sync_with_stdio(false); fin.tie(0);

#define mp make_pair
#define f first
#define s second
 
#define sz(x) (int)(x).size()
#define bg(x) begin(x)
#define all(x) bg(x), end(x)
#define sor(x) sort(all(x))
#define rsz resize
#define ins insert 
#define ft front()
#define bk back()
#define pb push_back
#define pf push_front
 
#define lb lower_bound
#define ub upper_bound
 
#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define F0R(i, a) FOR(i, 0, a)
#define ROF(i, a, b) for (int i = (b) - 1; i >= (a); i--)
#define R0F(i, a) ROF(i, 0, a)
#define EACH(a, x) for (auto& a : x)
 
ll cdiv(ll a, ll b) { return a / b + ((a ^ b) > 0 && a % b); }
ll fdiv(ll a, ll b) { return a / b - ((a ^ b) < 0 && a % b); }
 
template<class T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; }
template<class T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; }
 
template<class T> void remDup(vector<T>& v) { sor(v); v.erase(unique(all(v)), v.end()); }
 
const int MOD = 1e9 + 7;
const int MX = 5e5 + 10;
const ll INF = 1e18;

template<int SZ> struct Trie {
    int trie[SZ][26], num = 1; int end[SZ];
    
    vector<pair<int, char>> adj[SZ]; vector<char> ans;

    void insert(str S) {
        int curNode = 1;

        F0R(i, sz(S)) {
            if (!trie[curNode][S[i] - 'a']) {
                trie[curNode][S[i] - 'a'] = ++num;

                adj[curNode].pb({num, S[i]});
            }
            curNode = trie[curNode][S[i] - 'a'];

            if (i == sz(S) - 1) {
                end[curNode]++;
            }
        }
    }
    void DFS(int X) {
        F0R(i, end[X]) {
            ans.pb('P');
        }
        EACH(Y, adj[X]) {
            ans.pb(Y.s);

            DFS(Y.f);

            ans.pb('-');
        }
    }
};

int N; vs S; Trie<MX> T;

int main() {
    FASTIO;

    cin >> N;
    S.rsz(N);

    F0R(i, N) {
        cin >> S[i];
    }
    sort(all(S), [&](str A, str B) { return sz(A) < sz(B); });

    F0R(i, N) {
        T.insert(S[i]);
    }
    T.DFS(1);
    
    while (T.ans.bk == '-') {
        T.ans.pop_back();
    }
    cout << sz(T.ans) << "\n";
    
    EACH(C, T.ans) {
        cout << C << "\n";
    }
    
}
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 11980 KB Output is correct
2 Correct 6 ms 11980 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 11980 KB Output is correct
2 Incorrect 6 ms 11980 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 11980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 11980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 12108 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 12980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 15668 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 21480 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 57 ms 35664 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 48 ms 30480 KB Output isn't correct
2 Halted 0 ms 0 KB -