結果
問題 | No.872 All Tree Path |
ユーザー | nebukuro09 |
提出日時 | 2019-08-31 00:30:49 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 310 ms / 3,000 ms |
コード長 | 837 bytes |
コンパイル時間 | 845 ms |
コンパイル使用メモリ | 119,464 KB |
実行使用メモリ | 47,676 KB |
最終ジャッジ日時 | 2024-06-22 02:26:58 |
合計ジャッジ時間 | 4,269 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 295 ms
39,596 KB |
testcase_01 | AC | 310 ms
39,604 KB |
testcase_02 | AC | 306 ms
39,512 KB |
testcase_03 | AC | 251 ms
47,676 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 290 ms
39,560 KB |
testcase_06 | AC | 298 ms
39,588 KB |
testcase_07 | AC | 292 ms
39,488 KB |
testcase_08 | AC | 26 ms
6,940 KB |
testcase_09 | AC | 26 ms
6,944 KB |
testcase_10 | AC | 27 ms
7,832 KB |
testcase_11 | AC | 26 ms
6,948 KB |
testcase_12 | AC | 26 ms
8,296 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 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 g = new Tuple!(int, long)[][](N); foreach (_; 0..N-1) { auto s = readln.split.map!(to!int); g[s[0]-1] ~= tuple(s[1]-1, s[2].to!long); g[s[1]-1] ~= tuple(s[0]-1, s[2].to!long); } auto sub = new long[](N); long ans = 0; void dfs(int n, int p) { sub[n] = 1; foreach (to; g[n]) { int m = to[0]; long w = to[1]; if (m == p) continue; dfs(m, n); ans += sub[m] * (N - sub[m]) * w; sub[n] += sub[m]; } } dfs(0, -1); writeln(ans * 2); }