結果

問題 No.1094 木登り / Climbing tree
ユーザー SSRSSSRS
提出日時 2021-12-19 17:15:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,585 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 182,168 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-09-15 14:39:38
合計ジャッジ時間 27,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 929 ms
40,000 KB
testcase_02 AC 231 ms
41,400 KB
testcase_03 AC 222 ms
5,376 KB
testcase_04 AC 228 ms
19,200 KB
testcase_05 AC 337 ms
35,188 KB
testcase_06 AC 490 ms
14,848 KB
testcase_07 AC 944 ms
40,032 KB
testcase_08 AC 954 ms
40,072 KB
testcase_09 AC 952 ms
40,064 KB
testcase_10 AC 941 ms
40,064 KB
testcase_11 AC 929 ms
40,064 KB
testcase_12 AC 942 ms
39,992 KB
testcase_13 AC 923 ms
39,928 KB
testcase_14 AC 906 ms
40,064 KB
testcase_15 AC 528 ms
11,648 KB
testcase_16 WA -
testcase_17 AC 641 ms
20,480 KB
testcase_18 AC 590 ms
16,128 KB
testcase_19 AC 706 ms
27,480 KB
testcase_20 AC 937 ms
40,064 KB
testcase_21 AC 648 ms
21,760 KB
testcase_22 AC 936 ms
40,012 KB
testcase_23 AC 919 ms
40,060 KB
testcase_24 AC 906 ms
40,044 KB
testcase_25 AC 919 ms
40,016 KB
testcase_26 AC 915 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int LOG = 17;
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