Submission #765767

# Submission time Handle Problem Language Result Execution time Memory
765767 2023-06-25T04:54:16 Z vjudge1 Roadside Advertisements (NOI17_roadsideadverts) C++17
7 / 100
105 ms 21268 KB
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")

#include <bits/stdc++.h>

#define ll long long
#define fi first
#define se second
#define pb push_back
#define sz size
#define iosBASE ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define Freopen freopen ("input.txt", "r", stdin);freopen ("output.txt", "w", stdout);

using namespace std;

// const ll K = 32;    
const ll INF = 1e18;
const ll mod = 1e9 + 7;
const ll N = 1e5 + 5;

int n, q;
int p[50005][20], sum[50005][20], l[50005];;
vector <int> g[50005];
map <pair <int, int>, int> mp;

void dfs (int v, int pr)
{
    l[v] = l[pr] + 1;
    for (int bit = 1; bit < 20; bit++)
    {
        p[v][bit] = p[p[v][bit - 1]][bit - 1];
        sum[v][bit] = sum[v][bit - 1] + sum[p[v][bit - 1]][bit - 1];
    }
    for (int to : g[v])
    {
        if (to == pr) continue;
        sum[to][0] = mp[{v, to}];
        p[to][0] = v;
        dfs (to, v);
    }
}

pair <int, int> get (int a, int x)
{
    int sumres = 0;
    for (int bit = 0; bit < 20; bit++)
    {
        if ((x & (1 << bit)) > 0)
        {
            sumres += sum[a][bit];
            a = p[a][bit];
        }
    }
    return {a, sumres};
}

pair <int, int> lca (int a, int b)
{
    int sumres = 0;
    pair <int, int> gt;
    if (l[a] > l[b])
    {
        gt = get (a, l[a] - l[b]);
        a = gt.fi;
        sumres = gt.se;
    }
    b = get (b, l[b] - l[a]).fi;
    if (a == b) return {l[a], sumres};
    for (int bit = 19; bit >= 0; bit--)
    {
        if (p[a][bit] != p[b][bit] || bit == 0)
        {
            sumres += sum[a][bit];
            a = p[a][bit];
            b = p[b][bit];
        }
    }
    return {l[a], sumres};
}
    
void ma1n ()
{
    cin >> n;
    for (int i = 1, u, v, w; i < n; i++)
    {
        cin >> u >> v >> w;
        u++;
        v++;
        g[u].pb (v);
        g[v].pb (u);
        mp[{u, v}] = mp[{v, u}] = w;
    }
    dfs (1, 1);
    cin >> q;
    int a[10];
    for (int t = 1; t <= q; t++)
    {
        int ans = 0;
        pair <int, int> pr = {0, 100000};
        for (int i = 1; i <= 5; i++)
        {
            cin >> a[i];
            a[i]++;
        }
        pr = max (pr, lca (a[1], a[2]));
        ans += pr.se;
        for (int i = 2; i <= 5; i++){
            pr = {0, 100000};
            for (int j = 1; j < i; j++)
            {
                pr = max (pr, lca (a[i], a[j]));
            }
            ans += pr.se;
        }
        cout << ans << "\n";
    }
}

int main ()
{
    iosBASE;
    int t = 1;
    while (t--)
    {
        ma1n ();
    }
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1492 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 105 ms 21268 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 58 ms 18112 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1492 KB Output is correct
2 Incorrect 105 ms 21268 KB Output isn't correct
3 Halted 0 ms 0 KB -