結果

問題 No.1308 ジャンプビーコン
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-12-05 00:26:30
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 4,069 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 111,680 KB
実行使用メモリ 115,148 KB
最終ジャッジ日時 2023-09-04 11:25:44
合計ジャッジ時間 17,143 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 11 ms
4,380 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 334 ms
4,380 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 233 ms
4,376 KB
testcase_25 AC 234 ms
4,380 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 RE -
testcase_32 WA -
testcase_33 WA -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


enum E = 12;
enum INF = 10L^^18;

int N, Q;
long C;
int[] A, B;
long[] L;
int[] X;

int[][] G;
long[] dep;
int[] poss;
alias Entry = Tuple!(long, "d", int, "u");
Entry[] es;
void dfs(int u, int p, long d) {
  dep[u] = d;
  poss[u] = cast(int)(es.length);
  es ~= Entry(d, u);
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    if (v != p) {
      dfs(v, u, d + L[i]);
      es ~= Entry(d, u);
    }
  }
}

int esLen;
Entry[][] mns;
int lca(int u, int v) {
  int a = poss[u], b = poss[v];
  if (a > b) {
    swap(a, b);
  }
  const e = bsr(b - a + 1);
  const l = min(mns[e][a], mns[e][b + 1 - (1 << e)]).u;
  debug {
    // writefln("lca %s %s = %s", u, v, l);
  }
  return l;
}

void main() {
  try {
    for (; ; ) {
      N = readInt();
      Q = readInt();
      C = readLong();
      A = new int[N - 1];
      B = new int[N - 1];
      L = new long[N - 1];
      foreach (i; 0 .. N - 1) {
        A[i] = readInt() - 1;
        B[i] = readInt() - 1;
        L[i] = readLong();
      }
      X = new int[Q];
      foreach (q; 0 .. Q) {
        X[q] = readInt() - 1;
      }
      
      G = new int[][N];
      foreach (i; 0 .. N - 1) {
        G[A[i]] ~= i;
        G[B[i]] ~= i;
      }
      dep = new long[N];
      poss = new int[N];
      es = [];
      dfs(0, -1, 0);
      
      esLen = cast(int)(es.length);
      mns = new Entry[][](E, esLen);
      mns[0][] = es[];
      foreach (e; 0 .. E - 1) {
        mns[e + 1][] = mns[e][];
        foreach (a; 0 .. esLen) {
          if (a + (1 << e) < esLen) {
            chmin(mns[e + 1][a], mns[e][a + (1 << e)]);
          }
        }
      }
      
      auto lcas = new int[][](N, N);
      auto dist = new long[][](N, N);
      foreach (u; 0 .. N) foreach (v; u .. N) {
        const l = lca(u, v);
        lcas[u][v] = lcas[v][u] = l;
        dist[u][v] = dist[v][u] = dep[u] + dep[v] - 2 * dep[l];
      }
      
      auto ds = new long[Q - 1];
      auto dsSum = new long[Q];
      foreach (q; 0 .. Q - 1) {
        ds[q] = dist[X[q]][X[q + 1]];
        dsSum[q + 1] = dsSum[q] + ds[q];
      }
      debug {
        writeln("ds = ", ds);
      }
      
      auto dp = new long[Q];
      dp[] = INF;
      dp[0] = 0;
      foreach (q; 0 .. Q - 1) {
        chmin(dp[q + 1], dp[q] + ds[q]);
        foreach (r; q + 2 .. Q) {
          int[3] us = [X[q], X[q + 1], X[r]];
          int l;
          foreach (j; 0 .. 3) {
            l ^= lca(us[(j + 1) % 3], us[(j + 2) % 3]);
          }
          long cost = dp[q];
          cost += dsSum[r - 1] - dsSum[q + 1];
          foreach (j; 0 .. 3) {
            cost += dist[l][us[j]];
          }
          cost += C;
          debug {
            writeln(q, " ", r, ": ", us, " ", l, " ", cost);
          }
          chmin(dp[r], cost);
        }
      }
      debug {
        writeln("dp = ", dp);
      }
      writeln(dp[Q - 1]);
    }
  } catch (EOFException e) {
  }
}
0