結果

問題 No.898 tri-βutree
ユーザー hiromi_ayasehiromi_ayase
提出日時 2019-10-05 01:32:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 789 ms / 4,000 ms
コード長 5,561 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 90,688 KB
実行使用メモリ 68,296 KB
最終ジャッジ日時 2024-04-26 08:48:52
合計ジャッジ時間 17,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 626 ms
68,296 KB
testcase_01 AC 73 ms
38,288 KB
testcase_02 AC 85 ms
38,828 KB
testcase_03 AC 86 ms
38,780 KB
testcase_04 AC 84 ms
38,780 KB
testcase_05 AC 85 ms
38,640 KB
testcase_06 AC 85 ms
38,560 KB
testcase_07 AC 744 ms
58,320 KB
testcase_08 AC 782 ms
58,208 KB
testcase_09 AC 778 ms
58,400 KB
testcase_10 AC 763 ms
58,324 KB
testcase_11 AC 767 ms
58,948 KB
testcase_12 AC 770 ms
58,548 KB
testcase_13 AC 757 ms
58,580 KB
testcase_14 AC 789 ms
57,808 KB
testcase_15 AC 744 ms
58,632 KB
testcase_16 AC 769 ms
58,304 KB
testcase_17 AC 740 ms
58,480 KB
testcase_18 AC 779 ms
58,448 KB
testcase_19 AC 780 ms
58,592 KB
testcase_20 AC 751 ms
58,456 KB
testcase_21 AC 751 ms
58,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;

public class Main {

  private static void solve() {
    int n = ni();
    int[] from = new int[n - 1];
    int[] to = new int[n - 1];
    int[] w = new int[n - 1];
    for (int i = 0; i < n - 1; i++) {
      from[i] = ni();
      to[i] = ni();
      w[i] = ni();
    }
    long[] wdep = new long[n];
    int[][][] g = packWU(n, from, to, w);
    int[][] p3 = parents3(g, 0, wdep);
    int[] dep = p3[2];
    int[] par = p3[0];

    int[][] spar = logstepParents(par);

    int q = ni();
    for (int i = 0; i < q; i++) {
      int x = ni();
      int y = ni();
      int z = ni();

      int anc1 = lca2(x, y, spar, dep);
      int anc2 = lca2(y, z, spar, dep);
      int anc3 = lca2(z, x, spar, dep);
      long ret = wdep[x] + wdep[y] + wdep[z] - wdep[anc1] - wdep[anc2] - wdep[anc3];
      out.println(ret);
    }
  }

  public static int lca2(int a, int b, int[][] spar, int[] depth) {
    if (depth[a] < depth[b]) {
      b = ancestor(b, depth[b] - depth[a], spar);
    } else if (depth[a] > depth[b]) {
      a = ancestor(a, depth[a] - depth[b], spar);
    }

    if (a == b)
      return a;
    int sa = a, sb = b;
    for (int low = 0, high = depth[a], t = Integer.highestOneBit(high), k =
        Integer.numberOfTrailingZeros(t); t > 0; t >>>= 1, k--) {
      if ((low ^ high) >= t) {
        if (spar[k][sa] != spar[k][sb]) {
          low |= t;
          sa = spar[k][sa];
          sb = spar[k][sb];
        } else {
          high = low | t - 1;
        }
      }
    }
    return spar[0][sa];
  }

  protected static int ancestor(int a, int m, int[][] spar) {
    for (int i = 0; m > 0 && a != -1; m >>>= 1, i++) {
      if ((m & 1) == 1)
        a = spar[i][a];
    }
    return a;
  }

  public static int[][] logstepParents(int[] par) {
    int n = par.length;
    int m = Integer.numberOfTrailingZeros(Integer.highestOneBit(n - 1)) + 1;
    int[][] pars = new int[m][n];
    pars[0] = par;
    for (int j = 1; j < m; j++) {
      for (int i = 0; i < n; i++) {
        pars[j][i] = pars[j - 1][i] == -1 ? -1 : pars[j - 1][pars[j - 1][i]];
      }
    }
    return pars;
  }


  public static int[][] parents3(int[][][] g, int root, long[] wdepth) {
    int n = g.length;
    int[] par = new int[n];
    Arrays.fill(par, -1);

    int[] dep = new int[n];

    int[] q = new int[n];
    q[0] = root;
    for (int p = 0, r = 1; p < r; p++) {
      int cur = q[p];
      for (int[] e : g[cur]) {
        int nex = e[0];
        if (par[cur] != nex) {
          q[r++] = nex;
          par[nex] = cur;
          wdepth[nex] = wdepth[cur] + e[1];
          dep[nex] = dep[cur] + 1;
        }
      }
    }
    return new int[][] {par, q, dep};
  }

  public static int[][][] packWU(int n, int[] from, int[] to, int[] w) {
    int[][][] g = new int[n][][];
    int[] p = new int[n];
    for (int f : from)
      p[f]++;
    for (int t : to)
      p[t]++;
    for (int i = 0; i < n; i++)
      g[i] = new int[p[i]][2];
    for (int i = 0; i < from.length; i++) {
      --p[from[i]];
      g[from[i]][p[from[i]]][0] = to[i];
      g[from[i]][p[from[i]]][1] = w[i];
      --p[to[i]];
      g[to[i]][p[to[i]]][0] = from[i];
      g[to[i]][p[to[i]]][1] = w[i];
    }
    return g;
  }


  public static void main(String[] args) {
    new Thread(null, new Runnable() {
      @Override
      public void run() {
        long start = System.currentTimeMillis();
        String debug = args.length > 0 ? args[0] : null;
        if (debug != null) {
          try {
            is = java.nio.file.Files.newInputStream(java.nio.file.Paths.get(debug));
          } catch (Exception e) {
            throw new RuntimeException(e);
          }
        }
        reader = new java.io.BufferedReader(new java.io.InputStreamReader(is), 32768);
        solve();
        out.flush();
        tr((System.currentTimeMillis() - start) + "ms");
      }
    }, "", 64000000).start();
  }

  private static java.io.InputStream is = System.in;
  private static java.io.PrintWriter out = new java.io.PrintWriter(System.out);
  private static java.util.StringTokenizer tokenizer = null;
  private static java.io.BufferedReader reader;

  public static String next() {
    while (tokenizer == null || !tokenizer.hasMoreTokens()) {
      try {
        tokenizer = new java.util.StringTokenizer(reader.readLine());
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }
    return tokenizer.nextToken();
  }

  private static double nd() {
    return Double.parseDouble(next());
  }

  private static long nl() {
    return Long.parseLong(next());
  }

  private static int[] na(int n) {
    int[] a = new int[n];
    for (int i = 0; i < n; i++)
      a[i] = ni();
    return a;
  }

  private static char[] ns() {
    return next().toCharArray();
  }

  private static long[] nal(int n) {
    long[] a = new long[n];
    for (int i = 0; i < n; i++)
      a[i] = nl();
    return a;
  }

  private static int[][] ntable(int n, int m) {
    int[][] table = new int[n][m];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[i][j] = ni();
      }
    }
    return table;
  }

  private static int[][] nlist(int n, int m) {
    int[][] table = new int[m][n];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[j][i] = ni();
      }
    }
    return table;
  }

  private static int ni() {
    return Integer.parseInt(next());
  }

  private static void tr(Object... o) {
    if (is != System.in)
      System.out.println(java.util.Arrays.deepToString(o));
  }
}

0