답안 #1000369

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1000369 2024-06-17T10:36:02 Z AtabayRajabli Type Printer (IOI08_printer) C++14
90 / 100
1000 ms 199248 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, cnt;
vector<vector<int>> t;
vector<int> mx, d;
vector<bool> w;
vector<vector<array<int, 3>>> g;
string s;
 
void add(int ind, int cur)
{
    while(ind < s.size())
    {
        if(t[cur][s[ind] - 'a']) cur = t[cur][s[ind] - 'a'];
        else cur = t[cur][s[ind] - 'a'] = ++x;
        ind++;
    }
    w[cur] = 1;
}
 
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]);
        g[v].push_back({mx[c], c, i});
    }
    sort(all(g[v]));
    if(lf) mx[v] = d[v];
}
 
void calc(int v, char c)
{
    cnt++;
    cout << c << endl;
    if(w[v]) cout << "P" << endl;
    for(auto i : g[v])
    {
        calc(i[1], char(i[2] + 'a'));
    }
    if(cnt < x)cout << "-" << endl;
}
 
void solve()
{
    cin >> n;
    t.resize(n * 26, vector<int>(26, 0));
    mx.resize(n * 26, 0);
    w.resize(n * 26, 0);
    d.resize(n * 26, 0);
    g.resize(n * 26);
    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:15: 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 |     while(ind < s.size())
      |           ~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 1116 KB Output is correct
2 Correct 10 ms 3420 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 6488 KB Output is correct
2 Correct 25 ms 8024 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 69 ms 23132 KB Output is correct
2 Correct 170 ms 46160 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 180 ms 68692 KB Output is correct
2 Correct 101 ms 88652 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 414 ms 138068 KB Output is correct
2 Correct 985 ms 167272 KB Output is correct
3 Correct 573 ms 168276 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 382 ms 187996 KB Output is correct
2 Execution timed out 1054 ms 199248 KB Time limit exceeded
3 Halted 0 ms 0 KB -