Submission #1000292

# Submission time Handle Problem Language Result Execution time Memory
1000292 2024-06-17T08:10:25 Z AtabayRajabli Type Printer (IOI08_printer) C++17
20 / 100
428 ms 66900 KB
#include <bits/stdc++.h>

// author : a1abay                                                                                                                            

using namespace std;

#define int ll
#define all(v) v.begin(), v.end()

typedef long long ll;
typedef long double ld;
const int inf = 1e9 + 7;
const int inff = (int)1e18 + 7;
const int sz = 25e3 + 5;

int n, k, x = 0;
int t[sz * 26][26], mx[sz * 26], d[sz * 26];
bool w[sz * 26];
vector<array<int, 3>> g[sz * 26];
string s;
set<int> st;

void add(int ind, int cur)
{
    if(ind == s.size()) 
    {
        w[cur] = 1;
        return;
    }
    if(t[cur][s[ind] - 'a']) cur = t[cur][s[ind] - 'a'];
    else cur = t[cur][s[ind] - 'a'] = ++x;
    add(ind + 1, cur);
}

void dfs(int v)
{
    bool lf = 1;
    for(int i = 0; i < 26; i++)
    {
        if(!t[v][i]) continue;
        lf = 0;
        int c = t[v][i];
        d[c] = d[v] + 1;
        dfs(c);
        mx[v] = max(mx[v], mx[c]);
    }
    for(int i = 0; i < 26; i++)
    {
        if(!t[v][i]) continue;
        int c = t[v][i];
        g[v].push_back({mx[c], c, i});
    }
    sort(all(g[v]));
    if(lf) mx[v] = d[v];
}

void calc(int v, char c)
{
    if(st.size() == x) return;
    st.insert(v);
    cout << c << endl;
    for(auto i : g[v])
    {
        calc(i[1], char(i[2] + 'a'));
    }
    if(w[v]) cout << "P" << endl;
    if(st.size() < x)cout << "-" << endl;
}

void solve()
{
    cin >> n;
    for(int i = 0; i < n; i++)
    {
        cin >> s;
        add(0, 0);
    }
    dfs(0);
    cout << x * 2 - mx[0] + n << endl;
    for(auto i : g[0])
    {
        calc(i[1], char(i[2] + 'a'));
    }
}

signed main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0); 
    
    int t = 1;
    // cin >> t;
    while(t--)
    {
        solve();
    }
}

Compilation message

printer.cpp: In function 'void add(ll, ll)':
printer.cpp:25:12: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   25 |     if(ind == s.size())
      |        ~~~~^~~~~~~~~~~
printer.cpp: In function 'void calc(ll, char)':
printer.cpp:59:18: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
   59 |     if(st.size() == x) return;
      |        ~~~~~~~~~~^~~~
printer.cpp:67:18: warning: comparison of integer expressions of different signedness: 'std::set<long long int>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
   67 |     if(st.size() < x)cout << "-" << endl;
      |        ~~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 19032 KB Output is correct
2 Correct 3 ms 19036 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 3 ms 19036 KB Output is correct
2 Correct 4 ms 19036 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 19036 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 19036 KB Output is correct
2 Incorrect 3 ms 19036 KB printed invalid word
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 19032 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 19 ms 20824 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 64 ms 26060 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 161 ms 37168 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 428 ms 66900 KB printed invalid word
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 331 ms 56904 KB printed invalid word
2 Halted 0 ms 0 KB -