結果

問題 No.2598 Kadomatsu on Tree
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-01-02 00:10:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 2,365 bytes
コンパイル時間 2,735 ms
コンパイル使用メモリ 119,444 KB
実行使用メモリ 35,588 KB
最終ジャッジ日時 2024-09-27 17:37:29
合計ジャッジ時間 15,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 5 ms
6,944 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 284 ms
25,356 KB
testcase_24 AC 295 ms
25,224 KB
testcase_25 AC 289 ms
25,880 KB
testcase_26 AC 284 ms
25,760 KB
testcase_27 AC 281 ms
26,464 KB
testcase_28 AC 285 ms
25,140 KB
testcase_29 AC 290 ms
25,448 KB
testcase_30 AC 289 ms
27,612 KB
testcase_31 AC 300 ms
24,660 KB
testcase_32 AC 310 ms
24,244 KB
testcase_33 AC 326 ms
27,784 KB
testcase_34 AC 309 ms
22,272 KB
testcase_35 AC 292 ms
26,576 KB
testcase_36 AC 296 ms
26,172 KB
testcase_37 AC 302 ms
25,768 KB
testcase_38 AC 382 ms
27,456 KB
testcase_39 AC 394 ms
27,732 KB
testcase_40 AC 313 ms
28,696 KB
testcase_41 AC 291 ms
27,932 KB
testcase_42 AC 306 ms
27,276 KB
testcase_43 AC 306 ms
28,800 KB
testcase_44 AC 302 ms
26,612 KB
testcase_45 AC 307 ms
26,788 KB
testcase_46 AC 304 ms
25,464 KB
testcase_47 AC 315 ms
26,256 KB
testcase_48 AC 296 ms
35,588 KB
testcase_49 AC 28 ms
6,940 KB
testcase_50 AC 196 ms
26,596 KB
testcase_51 AC 55 ms
9,184 KB
testcase_52 AC 91 ms
11,428 KB
testcase_53 AC 103 ms
12,488 KB
testcase_54 AC 87 ms
10,008 KB
testcase_55 AC 36 ms
7,024 KB
testcase_56 AC 164 ms
18,008 KB
testcase_57 AC 60 ms
7,888 KB
testcase_58 AC 241 ms
22,324 KB
testcase_59 AC 244 ms
20,560 KB
testcase_60 AC 270 ms
30,924 KB
testcase_61 AC 273 ms
35,436 KB
testcase_62 AC 257 ms
29,796 KB
権限があれば一括ダウンロードができます

ソースコード

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; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

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 MO = 998244353;

int N;
int[] A, B;
int[] C;

int[][] graph;
int[] par, sz;

void dfs(int u, int p) {
  par[u] = p;
  sz[u] = 1;
  foreach (v; graph[u]) if (p != v) {
    dfs(v, u);
    sz[u] += sz[v];
  }
}

void main() {
  try {
    for (; ; ) {
      N = readInt;
      A = new int[N - 1];
      B = new int[N - 1];
      foreach (i; 0 .. N - 1) {
        A[i] = readInt - 1;
        B[i] = readInt - 1;
      }
      C = new int[N];
      foreach (u; 0 .. N) {
        C[u] = readInt;
      }
      
      graph = new int[][N];
      foreach (i; 0 .. N - 1) {
        graph[A[i]] ~= B[i];
        graph[B[i]] ~= A[i];
      }
      par = new int[N];
      sz = new int[N];
      dfs(0, -1);
      
      long ans;
      foreach (u; 0 .. N) {
        int[][2] xss;
        foreach (v; graph[u]) {
          const x = (v == par[u]) ? (N - sz[u]) : sz[v];
          if (C[u] > C[v]) xss[0] ~= x;
          if (C[u] < C[v]) xss[1] ~= x;
        }
        foreach (h; 0 .. 2) {
          long sum;
          foreach (x; xss[h]) {
            ans += sum * x;
            sum += x;
          }
        }
      }
      writeln(ans % MO);
    }
  } catch (EOFException e) {
  }
}
0