結果
問題 | No.399 動的な領主 |
ユーザー | nebukuro09 |
提出日時 | 2017-06-02 17:05:55 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 249 ms / 2,000 ms |
コード長 | 2,166 bytes |
コンパイル時間 | 1,018 ms |
コンパイル使用メモリ | 119,292 KB |
実行使用メモリ | 33,348 KB |
最終ジャッジ日時 | 2024-06-12 19:42:31 |
合計ジャッジ時間 | 5,311 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 21 ms
6,940 KB |
testcase_06 | AC | 247 ms
21,856 KB |
testcase_07 | AC | 249 ms
21,964 KB |
testcase_08 | AC | 247 ms
22,440 KB |
testcase_09 | AC | 245 ms
21,540 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 19 ms
6,944 KB |
testcase_12 | AC | 220 ms
21,776 KB |
testcase_13 | AC | 217 ms
22,396 KB |
testcase_14 | AC | 166 ms
32,188 KB |
testcase_15 | AC | 175 ms
33,348 KB |
testcase_16 | AC | 174 ms
26,904 KB |
testcase_17 | AC | 245 ms
22,196 KB |
testcase_18 | AC | 240 ms
21,192 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; void main() { auto N = readln.chomp.to!int; auto edges = new int[][](N); foreach (i; 0..N-1) { auto s = readln.split.map!(to!int); edges[s[0] - 1] ~= s[1] - 1; edges[s[1] - 1] ~= s[0] - 1; } auto depth = new int[](N); auto dp = new int[][](20, N); void dfs(int n, int p, int d) { dp[0][n] = p; depth[n] = d; foreach (m; edges[n]) if (m != p) dfs(m, n, d+1); } dfs(0, -1, 0); foreach (k; 0..19) foreach (n; 0..N) dp[k+1][n] = (dp[k][n] == -1) ? -1 : dp[k][dp[k][n]]; int lca(int a, int b) { if (depth[a] < depth[b]) swap(a, b); auto orig_a = a; auto orig_b = b; while (depth[a] > depth[b]) { int K = 19; foreach (k; iota(K, -1, -1)) { if (2^^k <= depth[a] - depth[b]) { a = dp[k][a]; K = k; } } } if (a == b) return a; while (dp[0][a] != dp[0][b]) { int K = 19; foreach (k; iota(K, -1, -1)) { if (dp[k][a] != dp[k][b]) { a = dp[k][a]; b = dp[k][b]; K = k; } } } return dp[0][a]; } auto imos = new long[](N); fill(imos, 0); auto Q = readln.chomp.to!int; while (Q--) { auto s = readln.split.map!(to!int); auto a = s[0] - 1; auto b = s[1] - 1; auto c = lca(a, b); imos[a] += 1; imos[b] += 1; imos[c] -= 1; if (c > 0) imos[dp[0][c]] -= 1; //else imos[0] -= 1; } long dfs2(int n, int prev) { foreach (m; edges[n]) { if (m != prev) imos[n] += dfs2(m, n); } return imos[n]; } dfs2(0, -1); imos.map!(a => a * (a + 1) / 2).sum.writeln; }