Submission #366444

# Submission time Handle Problem Language Result Execution time Memory
366444 2021-02-14T08:07:26 Z ne4eHbKa Papričice (COCI20_papricice) C++17
0 / 110
4 ms 5100 KB
#include <bits/stdc++.h>
using namespace std;
#ifndef _LOCAL
//#pragma GCC optimize("O3,Ofast")
#else
#pragma GCC optimize("O0")
#endif
template<typename t> inline void umin(t &a, const t b) {a = min(a, b);}
template<typename t> inline void umax(t &a, const t b) {a = max(a, b);}
typedef pair<int, int> pii;
typedef long long ll;
typedef long double ld;
ll time() {return chrono::system_clock().now().time_since_epoch().count();}
mt19937 rnd(time());
#define ft first
#define sd second
#define len(f) int((f).size())
#define bnd(f) (f).begin(), (f).end()
#define _ <<' '<<
const int inf = 1e9 + 5;
const ll inf64 = 4e18 + 5;
const int md = 998244353;
namespace MD {
    void add(int &a, const int b) {if((a += b) >= md) a -= md;}
    void sub(int &a, const int b) {if((a -= b) < 0) a += md;}
    int prod(const int a, const int b) {return ll(a) * b % md;}
};

const int N = 2e5 + 5;
int n;
list<int> g[N];
int tin[N], tout[N], timer, si[N];

struct tree {
    tree *l{}, *r{};
    pii v{+inf, -inf};
    tree(int tl = 0, int tr = n) {
        if(tl < tr) {
            int tm = tl + tr >> 1;
            l = new tree(tl, tm);
            r = new tree(tm + 1, tr);
        }
    }
    void update(int i, int u, int tl = 0, int tr = n) {
        umin(v.ft, tout[u]);
        umax(v.sd, tin[u]);
        if(tl == tr) return;
        int tm = tl + tr >> 1;
        i <= tm
            ? l->update(i, u, tl, tm)
            : r->update(i, u, tm + 1, tr);
    }
    pii get(int L, int R, int tl = 0, int tr = n) {
        if(L > R) return {+inf, -inf};
        if(L == tl && R == tr) return v;
        int tm = tl + tr >> 1;
        pii le = l->get(L, min(R, tm), tl, tm); ++tm;
        pii ri = r->get(max(tm, L), R, tm, tr);
        return {min(le.ft, ri.ft), max(le.sd, ri.sd)};
    }
} *t;

void init(int v = 0, int pr = -1) {
    tin[v] = timer++;
    si[v] = 1;
    g[v].remove(pr);
    for(int u : g[v])
        init(u, v),
        si[v] += si[u];
    tout[v] = timer - 1;
}

set<int> f;

bool dfs(int d, int v = 0) {
    int a = si[v];
    if(!f.empty()) {
        int b = *f.lower_bound(n - a >> 1);
        int c = n - a - b;
        if(b > c) swap(b, c);
        if(c - b <= d &&
           abs(a - b) <= d &&
           abs(a - c) <= d) return true;
    }
    if(!g[v].empty()) {
        bool i_a = f.insert(a).sd;
        bool i_na = f.insert(n - a).sd;
        for(int u : g[v])
            if(dfs(d, u)) return true;
        if(i_a) f.erase(a);
        if(i_na) f.erase(n - a);
    }
    return false;
}

bool works(int d) {
    for(int i = 0; i < n; ++i) {
        int a = si[i];
        if(a * 3 > n) continue;
        if(a * 3 + d * 2 < n) continue;
        pii z = t->get(max(a, n - a - a - d),
                       min(n - a - a, a + d));
        if(z.ft < tin[i] || z.sd > tout[i]) return true;
    }
    f.clear();
    return dfs(d);
}

void solve() {
    cin >> n;
    for(int i = 1; i < n; ++i) {
        int x, y;
        cin >> x >> y;
        --x, --y;
        g[x].push_back(y);
        g[y].push_back(x);
    }
    init();
    t = new tree();
    int l = 0, r = n;
    while(l < r) {
        int m = l + r >> 1;
        works(m)
            ? r = m
            : l = m + 1;
    }
    cout << l << endl;
#ifdef KEK
    timer = 0;
    for(int i = 0; i < n; ++i)
        g[i].clear();
#endif // KEK
}

int main() {
    ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#ifndef _LOCAL
//    freopen("file.in", "r", stdin);
//    freopen("file.out", "w", stdout);
#else
    system("color a");
    freopen("in.txt", "r", stdin);
    int t; cin >> t;
    while(t--)
#endif
    solve();
}

Compilation message

papricice.cpp: In constructor 'tree::tree(int, int)':
papricice.cpp:39:25: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   39 |             int tm = tl + tr >> 1;
      |                      ~~~^~~~
papricice.cpp: In member function 'void tree::update(int, int, int, int)':
papricice.cpp:48:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   48 |         int tm = tl + tr >> 1;
      |                  ~~~^~~~
papricice.cpp: In member function 'pii tree::get(int, int, int, int)':
papricice.cpp:56:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   56 |         int tm = tl + tr >> 1;
      |                  ~~~^~~~
papricice.cpp: In function 'bool dfs(int, int)':
papricice.cpp:78:34: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   78 |         int b = *f.lower_bound(n - a >> 1);
      |                                ~~^~~
papricice.cpp: In function 'void solve()':
papricice.cpp:122:19: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
  122 |         int m = l + r >> 1;
      |                 ~~^~~
# Verdict Execution time Memory Grader output
1 Correct 4 ms 5100 KB Output is correct
2 Incorrect 4 ms 5100 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 5100 KB Output is correct
2 Incorrect 4 ms 5100 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 5100 KB Output is correct
2 Incorrect 4 ms 5100 KB Output isn't correct
3 Halted 0 ms 0 KB -