Submission #1074875

# Submission time Handle Problem Language Result Execution time Memory
1074875 2024-08-25T15:49:19 Z Ejen Lampice (COCI19_lampice) C++17
0 / 110
2111 ms 17080 KB
#include <bits/stdc++.h>

#define el "\n"
#define fu(i, a, b) for (int i = a; i <= b; ++i)
#define fd(i, a, b) for (int i = a; i >= b; --i)
#define ff first
#define ss second
#define all(v) (v).begin(), (v).end()
#define sz(v) (ll)(v).size()
#define mask(i) (1LL << (i))
#define bit(x, i) ((x) >> (i) & 1)
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
 
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
 
ll Rand(ll l, ll r) {
    return uniform_int_distribution<ll>(l, r) (rng);
}
 
ll last(ll msk)     {return msk & (-msk);}
ll pop_cnt(ll msk)  {return __builtin_popcountll(msk);}
ll ctz(ll msk)      {return __builtin_ctzll(msk);}
ll lg(ll msk)       {return 63 - __builtin_clzll(msk);}
 
template<class T1, class T2> bool minimize(T1 &a, T2 b) {
    return a > b ? a = b, 1 : 0;
}
 
template<class T1, class T2> bool maximize(T1 &a, T2 b) {
    return a < b ? a = b, 1 : 0;
}
 
template<class T> void print(T a) {
    for (auto x : a) cout << x << " ";
    cout << el;
}
 
template<class T> void compress(T &a) {
    sort(all(a));
    a.resize(unique(all(a)) - a.begin());
}
 
const long long N = 5e4 + 27, mod = 1e9 + 7, inf = 2e18, bl = 320, lim = 1e6 + 27, base = 311;

ll n, sz;
string s;
ll child[N], hashUp[N], hashDown[N], pw[N], h[N];
ll up[16][N];
bool del[N];
basic_string<ll> adj[N];
unordered_map<ll, bool> mp;

void countChild(ll u, ll p) {
    child[u] = 1;
    // cout << u << ' '  << child[u] << el;
    for (ll v : adj[u]) {
        if (v == p || del[v]) continue;
        countChild(v, u);
        child[u] += child[v];
    }
    // cout << child[u] << ' ';
}

ll centroid(ll u, ll p, ll root) {
    for (ll v : adj[u]) {
        if (v == p || del[v] || child[v] <= child[root] / 2) continue;
        return centroid(v, u, root);
    }
    return u;
}

ll lift(ll x, ll k) {
    while (k) {
        ll i = ctz(k);
        x = up[i][x];
        k -= last(k);
    }
    return x;
}

void dfs(ll u, ll p) {
    hashUp[u] = hashUp[p] + s[u] * pw[h[u]];
    hashDown[u] = hashDown[p] * base + s[u];
    for (ll v : adj[u]) {
        if (v == up[0][u] || del[v]) continue;
        h[v] = h[u] + 1;
        up[0][v] = u;
        fu(i, 1, lg(h[u])) up[i][v] = up[i - 1][up[i - 1][v]];
        dfs(v, u);
    }
}

void dfsUpdate(ll u, ll len) {
    if (len >= h[u] && h[u] + 1 >= len - h[u]) {
        ll par = lift(u, len - h[u]);
        // cout << u << ' ' << par << el;
        mp[hashDown[u] - mp[hashDown[par]] * pw[h[u] - h[par] + 1]] = true;
    }
    for (ll v : adj[u]) {
        if (v == up[0][u] || del[v]) continue;
        dfsUpdate(v, len);
    }
}

bool dfsSearch(ll u, ll len) {
    if (mp[hashDown[u]]) return true;
    if (h[u] + 1 == len && hashUp[u] == hashDown[u]) return true;
    for (ll v : adj[u]) {
        if (v == up[0][u] || del[v]) continue;
        return dfsSearch(v, len);
    }
    return false;
}

bool check(ll u, ll len) {
    // cout << u << el;
    countChild(u, 0);
    // fu(i, 1, n) cout << child[i] << ' ';
    mp.clear();
    ll root = centroid(u, 0, u);
    // cout << root << el;
    h[root] = 0;
    dfs(root, 0);
    // fu(i, 1, n) cout << hashDown[i] << ' ' << hashUp[i] << el;
    // cout << hashDown[2] << ' ' << 
    for (ll x : adj[root]) {
        if (del[x]) continue;
        // cout << x << el;
        if (dfsSearch(x, len)) return true;
        dfsUpdate(x, len);
    }
    // cout << u << el;
    del[root] = true;
    // return false;
    for (ll v : adj[root]) {
        if (del[v]) continue;
        check(v, len);
    }
    return false;
}

signed main() {
//    freopen("bai3.inp", "r", stdin);
//    freopen("bai3.out", "w", stdout);
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    cin >> n >> s;
    s = ' ' + s;
    sz = sz(s) - 1;
    pw[0] = 1;
    fu(i, 1, n) pw[i] = pw[i - 1] * base;
    fu(i, 2, n) {
        ll u, v;
        cin >> u >> v;
        adj[u].push_back(v);
        adj[v].push_back(u);
    }
    // cout << check(1, 7);
    ll res = 1;
    ll l = 1, r = n / 2;
    while (l <= r) {
        ll mid = (r + l) / 2;
        fu(i, 1, n) del[i] = 0;
        if (check(1, 2 * mid)) {
            res = 2 * mid;
            l = mid + 1;
        }
        else r = mid - 1;
    }
    l = 1, r = n / 2;
    while (l <= r) {
        ll mid = (l + r) / 2;
        fu(i, 1, n) del[i] = 0;
        if (check(1, 2 * mid + 1)) {
            res = 2 * mid + 1;
            l = mid + 1;
        }
        else r = mid - 1;
    }
    cout << res;

}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 6744 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 203 ms 17080 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2111 ms 14512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 6744 KB Output isn't correct
2 Halted 0 ms 0 KB -