Submission #852807

# Submission time Handle Problem Language Result Execution time Memory
852807 2023-09-22T18:13:06 Z lorenzoferrari Islands (IOI08_islands) C++17
80 / 100
1377 ms 131072 KB
#include "bits/stdc++.h"
using namespace std;
using LL = long long;

static constexpr int N = 1e6+5;

vector<array<int, 3>> edges;
vector<vector<int>> adj;
vector<array<int, 2>> par;
bitset<N> vis, cyc;
int cycle_node = -1;
int back_edge = -1;

void dfs(int v, int pi) {
    vis[v] = true;
    for (auto i : adj[v]) {
        auto [a, b, w] = edges[i];
        int u = a^b^v;
        if (i == pi) continue;   // deal with cycles of length 2
        if (!vis[u]) {
            par[u] = {v, w};
            dfs(u, i);
        } else if (vis[u] && cycle_node == -1) {
            cycle_node = v;
            par[u] = {v, w};
            back_edge = i;
        }
    }
}

void find_diam(int v, int p, LL dist, array<LL, 2>& max_dist) {
    max_dist = max(max_dist, array<LL, 2>{dist, v});
    for (auto i : adj[v]) {
        auto [a, b, w] = edges[i];
        int u = a^b^v;
        if (u == p || i == back_edge) continue;
        find_diam(u, v, dist + w, max_dist);
    }
}

LL height(int v, int p) {
    LL ans = 0;
    for (auto i : adj[v]) {
        auto [a, b, w] = edges[i];
        int u = a^b^v;
        if (u == p || i == back_edge) continue;
        if (cyc[u]) continue;
        ans = max(ans, w + height(u, v));
    }
    return ans;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int n; cin >> n;
    adj.resize(n+1);
    par.resize(n+1);
    edges.resize(n+1);

    for (int v = 1, u, w; v <= n; ++v) {
        cin >> u >> w;
        edges[v] = {v, u, w};
        adj[v].push_back(v);
        adj[u].push_back(v);
    }

    LL ans = 0;
    for (int v = 1; v <= n; ++v) {
        if (!vis[v]) {
            // first dfs
            dfs(v, -1);

            // diameter
            array<LL, 2> max_dist{0, v};
            find_diam(v, -1, 0, max_dist);
            int u = max_dist[1];
            max_dist = {0, u};
            find_diam(u, -1, 0, max_dist);
            LL diameter = max_dist[0];

            // path traversing the cycle
            LL a = cycle_node;
            LL cycle_length = 0;
            while (par[a][0] != cycle_node) {
                cyc[a] = true;
                cycle_length += par[a][1];
                a = par[a][0];
            }
            cyc[a] = true;
            cycle_length += par[a][1];

            a = cycle_node;
            LL max1 = -1e9, max2 = -1e9;
            LL prv1 = height(a, -1);
            LL prv2 = prv1;
            while (par[a][0] != cycle_node) {
                auto [b, w] = par[a];
                prv1 += w;
                prv2 -= w;
                LL h = height(b, -1);
                max1 = max(max1, prv1 + h);
                max2 = max(max2, prv2 + h);
                prv1 = max(prv1, h);
                prv2 = max(prv2, h);
                a = b;
            }
            LL cycle_path = max(max1, cycle_length + max2);

            // increase the answer by the maximum path in the current cc
            ans += max(diameter, cycle_path);

            cycle_node = -1;    // reset
            back_edge = -1;
        }
    }

    cout << ans << "\n";
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 352 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Correct 0 ms 344 KB Output is correct
8 Correct 0 ms 344 KB Output is correct
9 Correct 0 ms 348 KB Output is correct
10 Correct 0 ms 348 KB Output is correct
11 Correct 0 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 604 KB Output is correct
2 Correct 2 ms 920 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 6 ms 1880 KB Output is correct
2 Correct 14 ms 4656 KB Output is correct
3 Correct 9 ms 1884 KB Output is correct
4 Correct 4 ms 1116 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 22 ms 6236 KB Output is correct
2 Correct 29 ms 9812 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 64 ms 17548 KB Output is correct
2 Correct 78 ms 25936 KB Output is correct
3 Correct 91 ms 35408 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 108 ms 32040 KB Output is correct
2 Correct 163 ms 59728 KB Output is correct
3 Correct 181 ms 73756 KB Output is correct
4 Correct 210 ms 90456 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 208 ms 78684 KB Output is correct
2 Correct 891 ms 130332 KB Output is correct
3 Correct 219 ms 62040 KB Output is correct
4 Correct 300 ms 108236 KB Output is correct
5 Correct 307 ms 108184 KB Output is correct
6 Correct 1377 ms 73036 KB Output is correct
7 Runtime error 277 ms 131072 KB Execution killed with signal 9
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 250 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -