/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 3ms 5.777 MiB
#2 Accepted 3ms 6.527 MiB
#3 Accepted 3ms 5.527 MiB
#4 Accepted 4ms 5.277 MiB
#5 Accepted 3ms 5.027 MiB
#6 Accepted 3ms 5.047 MiB
#7 Accepted 11ms 5.832 MiB
#8 Accepted 13ms 7.875 MiB
#9 Accepted 13ms 7.184 MiB
#10 Accepted 12ms 6.691 MiB
#11 Accepted 299ms 19.949 MiB
#12 Accepted 393ms 19.852 MiB
#13 Accepted 313ms 19.84 MiB
#14 Accepted 232ms 19.984 MiB
#15 Accepted 130ms 10.961 MiB
#16 Accepted 141ms 10.582 MiB
#17 Accepted 121ms 11.203 MiB
#18 Accepted 129ms 10.883 MiB
#19 Accepted 129ms 12.828 MiB
#20 Accepted 121ms 10.773 MiB

Code

#include <iostream>
#include <vector>
#include <algorithm>
#include <climits>
#include <cmath>
using namespace std;

const int MAXN = 100000;
const int LOG = 17;

vector<pair<int, int>> adj[MAXN + 1];
int up[MAXN + 1][LOG];
int maxEdge[MAXN + 1][LOG];
int depth[MAXN + 1];

void dfs(int node, int parent, int weight) {
    up[node][0] = parent;
    maxEdge[node][0] = weight;
    for (int i = 1; i < LOG; i++) {
        up[node][i] = up[up[node][i-1]][i-1];
        maxEdge[node][i] = max(maxEdge[node][i-1], maxEdge[up[node][i-1]][i-1]);
    }

    for (auto &[next, w] : adj[node]) {
        if (next != parent) {
            depth[next] = depth[node] + 1;
            dfs(next, node, w);
        }
    }
}
int query(int u, int v) {
    if (depth[u] < depth[v]) swap(u, v);
    int maxRes = INT_MIN;

    for (int i = LOG - 1; i >= 0; i--) {
        if (depth[u] - (1 << i) >= depth[v]) {
            maxRes = max(maxRes, maxEdge[u][i]);
            u = up[u][i];
        }
    }

    if (u == v) return maxRes;

    for (int i = LOG - 1; i >= 0; i--) {
        if (up[u][i] != up[v][i]) {
            maxRes = max({maxRes, maxEdge[u][i], maxEdge[v][i]});
            u = up[u][i];
            v = up[v][i];
        }
    }

    maxRes = max({maxRes, maxEdge[u][0], maxEdge[v][0]});
    return maxRes;
}

int main() {
    int N;
    cin >> N;
    int K; cin >> K;

    for (int i = 1; i < N; i++) {
        int A, B, C;
        cin >> A >> B >> C;
        adj[A].emplace_back(B, C);
        adj[B].emplace_back(A, C);
    }

    for (int i = 1; i <= N; i++) {
        for (int j = 0; j < LOG; j++) {
            up[i][j] = -1;
            maxEdge[i][j] = INT_MIN;
        }
    }

    // Preprocess
    depth[1] = 0;
    dfs(1, -1, 0);

    // Queries
    while (K--) {
        int D, E;
        cin >> D >> E;
        auto maxLength = query(D, E);
        cout << maxLength << "\n";
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1019 Graph Stuff
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-22 12:34:50
Judged At
2025-01-22 12:34:50
Judged By
Score
100
Total Time
393ms
Peak Memory
19.984 MiB