結果

問題 No.1103 Directed Length Sum
ユーザー tonyu0tonyu0
提出日時 2020-07-03 23:25:19
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 981 bytes
コンパイル時間 11,057 ms
コンパイル使用メモリ 406,424 KB
実行使用メモリ 99,220 KB
最終ジャッジ日時 2024-09-17 05:00:43
合計ジャッジ時間 16,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 80 ms
61,520 KB
testcase_04 AC 244 ms
44,032 KB
testcase_05 AC 494 ms
74,368 KB
testcase_06 AC 140 ms
29,056 KB
testcase_07 AC 17 ms
8,320 KB
testcase_08 AC 29 ms
11,656 KB
testcase_09 AC 10 ms
5,888 KB
testcase_10 AC 47 ms
15,488 KB
testcase_11 AC 287 ms
47,744 KB
testcase_12 AC 138 ms
29,396 KB
testcase_13 AC 59 ms
15,872 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 100 ms
23,412 KB
testcase_16 AC 321 ms
53,316 KB
testcase_17 AC 330 ms
55,552 KB
testcase_18 AC 45 ms
15,232 KB
testcase_19 AC 264 ms
48,896 KB
testcase_20 AC 13 ms
6,912 KB
testcase_21 AC 25 ms
11,008 KB
testcase_22 AC 185 ms
40,064 KB
testcase_23 AC 81 ms
24,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let mut g: Vec<Vec<usize>> = vec![Vec::new(); n];
    let mut deg = vec![0; n];
    for _ in 0..n - 1 {
        let a = itr.next().unwrap().parse::<usize>().unwrap() - 1;
        let b = itr.next().unwrap().parse::<usize>().unwrap() - 1;
        g[a].push(b);
        deg[b] += 1;
    }

    let mut start = 0;
    for i in 0..n {
        if deg[i] == 0 {
            start = i;
        }
    }

    let mut q = std::collections::VecDeque::new();
    let mut dist = vec![0u64; n];
    q.push_back(start);

    let mut ans = 0u64;
    while let Some(v) = q.pop_front() {
        ans += dist[v] * (dist[v] + 1) / 2;
        for &nv in g[v].iter() {
            dist[nv] = dist[v] + 1;
            q.push_back(nv);
        }
    }
    println!("{}", ans);
}
0