結果

問題 No.1094 木登り / Climbing tree
ユーザー SSRSSSRS
提出日時 2021-12-19 17:18:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 984 ms / 2,000 ms
コード長 1,585 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 182,048 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-11-08 07:25:44
合計ジャッジ時間 25,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 953 ms
40,832 KB
testcase_02 AC 234 ms
42,368 KB
testcase_03 AC 223 ms
5,248 KB
testcase_04 AC 230 ms
19,712 KB
testcase_05 AC 357 ms
35,840 KB
testcase_06 AC 515 ms
15,232 KB
testcase_07 AC 983 ms
40,960 KB
testcase_08 AC 982 ms
40,832 KB
testcase_09 AC 971 ms
40,960 KB
testcase_10 AC 984 ms
40,832 KB
testcase_11 AC 951 ms
40,832 KB
testcase_12 AC 964 ms
40,832 KB
testcase_13 AC 983 ms
40,832 KB
testcase_14 AC 962 ms
40,960 KB
testcase_15 AC 559 ms
11,776 KB
testcase_16 AC 791 ms
32,896 KB
testcase_17 AC 671 ms
20,864 KB
testcase_18 AC 610 ms
16,384 KB
testcase_19 AC 750 ms
28,160 KB
testcase_20 AC 972 ms
40,832 KB
testcase_21 AC 689 ms
22,144 KB
testcase_22 AC 970 ms
40,832 KB
testcase_23 AC 964 ms
40,960 KB
testcase_24 AC 944 ms
40,960 KB
testcase_25 AC 963 ms
40,832 KB
testcase_26 AC 954 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int LOG = 18;
int main(){
  int N;
  cin >> N;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < N - 1; i++){
    int a, b, c;
    cin >> a >> b >> c;
    a--;
    b--;
    E[a].push_back(make_pair(c, b));
    E[b].push_back(make_pair(c, a));
  }
  vector<int> p(N, -1);
  vector<vector<int>> c(N);
  vector<int> d1(N, 0);
  vector<int> d2(N, 0);
  queue<int> q;
  q.push(0);
  while (!q.empty()){
    int v = q.front();
    q.pop();
    for (auto P : E[v]){
      int w = P.second;
      if (w != p[v]){
        p[w] = v;
        c[v].push_back(w);
        d1[w] = d1[v] + 1;
        d2[w] = d2[v] + P.first;
        q.push(w);
      }
    }
  }
  vector<vector<int>> pp(LOG, vector<int>(N, -1));
  pp[0] = p;
  for (int i = 0; i < LOG - 1; i++){
    for (int j = 0; j < N; j++){
      if (pp[i][j] != -1){
        pp[i + 1][j] = pp[i][pp[i][j]];
      }
    }
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++){
    int s, t;
    cin >> s >> t;
    s--;
    t--;
    int ans = 0;
    if (d1[s] > d1[t]){
      swap(s, t);
    }
    for (int j = 0; j < LOG; j++){
      if (((d1[t] - d1[s]) >> j & 1) == 1){
        ans += d2[t] - d2[pp[j][t]];
        t = pp[j][t];
      }
    }
    if (s != t){
      for (int j = LOG - 1; j >= 0; j--){
        if (pp[j][s] != pp[j][t]){
          ans += d2[s] - d2[pp[j][s]];
          ans += d2[t] - d2[pp[j][t]];
          s = pp[j][s];
          t = pp[j][t];
        }
      }
      ans += d2[s] - d2[p[s]];
      ans += d2[t] - d2[p[t]];
    }
    cout << ans << endl;
  }
}
0