結果
問題 | No.1103 Directed Length Sum |
ユーザー | Strorkis |
提出日時 | 2020-07-03 22:55:13 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,410 bytes |
コンパイル時間 | 12,784 ms |
コンパイル使用メモリ | 405,196 KB |
実行使用メモリ | 166,844 KB |
最終ジャッジ日時 | 2024-09-17 04:36:57 |
合計ジャッジ時間 | 18,484 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 132 ms
42,008 KB |
testcase_04 | AC | 314 ms
29,384 KB |
testcase_05 | AC | 581 ms
49,556 KB |
testcase_06 | AC | 186 ms
19,728 KB |
testcase_07 | AC | 30 ms
6,944 KB |
testcase_08 | AC | 53 ms
8,448 KB |
testcase_09 | AC | 18 ms
6,940 KB |
testcase_10 | AC | 82 ms
10,888 KB |
testcase_11 | AC | 346 ms
31,864 KB |
testcase_12 | AC | 194 ms
19,980 KB |
testcase_13 | AC | 88 ms
11,084 KB |
testcase_14 | AC | 13 ms
6,940 KB |
testcase_15 | AC | 136 ms
15,920 KB |
testcase_16 | AC | 382 ms
35,592 KB |
testcase_17 | AC | 415 ms
37,140 KB |
testcase_18 | AC | 84 ms
10,836 KB |
testcase_19 | AC | 350 ms
32,656 KB |
testcase_20 | AC | 23 ms
6,940 KB |
testcase_21 | AC | 51 ms
7,680 KB |
testcase_22 | AC | 284 ms
26,952 KB |
testcase_23 | AC | 159 ms
16,976 KB |
ソースコード
struct DFS { graph: Vec<Vec<usize>>, } impl DFS { fn new(n: usize) -> DFS { DFS { graph: vec![vec![]; n], } } fn add_edge(&mut self, from: usize, to: usize) { self.graph[from].push(to); } fn search(&mut self, from: usize, d: usize) -> usize { let mut res = 0; for &to in self.graph[from].clone().iter() { res += self.search(to, d + 1); } res + (1 + d) * d / 2 } } fn main() { let n: usize = { let mut buf = String::new(); std::io::stdin().read_line(&mut buf).unwrap(); buf.trim_end().parse().unwrap() }; let mut dfs = DFS::new(n); let mut is_root = vec![true; n]; for _ in 0..(n - 1) { let (a, b): (usize, usize) = { let mut buf = String::new(); std::io::stdin().read_line(&mut buf).unwrap(); let mut iter = buf.split_whitespace(); ( iter.next().unwrap().parse::<usize>().unwrap() - 1, iter.next().unwrap().parse::<usize>().unwrap() - 1, ) }; dfs.add_edge(a, b); is_root[b] = false; } let root = { is_root.iter() .enumerate() .filter(|&(_, &b)| b) .map(|(i, _)| i) .next() .unwrap() }; let ans = dfs.search(root, 0); println!("{}", ans); }