結果

問題 No.1103 Directed Length Sum
ユーザー StrorkisStrorkis
提出日時 2020-07-03 22:57:56
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 540 ms / 3,000 ms
コード長 1,463 bytes
コンパイル時間 12,884 ms
コンパイル使用メモリ 401,544 KB
実行使用メモリ 166,932 KB
最終ジャッジ日時 2024-09-17 04:38:48
合計ジャッジ時間 18,459 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 328 ms
166,932 KB
testcase_03 AC 136 ms
41,968 KB
testcase_04 AC 294 ms
29,412 KB
testcase_05 AC 540 ms
49,580 KB
testcase_06 AC 175 ms
19,740 KB
testcase_07 AC 29 ms
6,940 KB
testcase_08 AC 49 ms
8,396 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 71 ms
10,836 KB
testcase_11 AC 324 ms
31,860 KB
testcase_12 AC 174 ms
19,928 KB
testcase_13 AC 73 ms
11,104 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 126 ms
15,952 KB
testcase_16 AC 364 ms
35,600 KB
testcase_17 AC 378 ms
37,012 KB
testcase_18 AC 78 ms
10,820 KB
testcase_19 AC 337 ms
32,744 KB
testcase_20 AC 24 ms
6,940 KB
testcase_21 AC 51 ms
7,808 KB
testcase_22 AC 269 ms
27,104 KB
testcase_23 AC 147 ms
16,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct DFS {
    graph: Vec<Vec<usize>>,
}

impl DFS {
    const MOD: usize = 1_000_000_007;

    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) % Self::MOD
    }
}

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