結果

問題 No.1103 Directed Length Sum
ユーザー tonyu0tonyu0
提出日時 2020-07-03 23:31:08
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 456 ms / 3,000 ms
コード長 1,028 bytes
コンパイル時間 14,828 ms
コンパイル使用メモリ 386,508 KB
実行使用メモリ 98,012 KB
最終ジャッジ日時 2024-09-17 05:03:50
合計ジャッジ時間 15,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 154 ms
98,012 KB
testcase_03 AC 77 ms
61,356 KB
testcase_04 AC 222 ms
44,316 KB
testcase_05 AC 456 ms
75,300 KB
testcase_06 AC 110 ms
29,064 KB
testcase_07 AC 16 ms
8,320 KB
testcase_08 AC 26 ms
11,648 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 41 ms
15,460 KB
testcase_11 AC 238 ms
47,588 KB
testcase_12 AC 116 ms
30,852 KB
testcase_13 AC 39 ms
15,824 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 73 ms
23,424 KB
testcase_16 AC 276 ms
53,352 KB
testcase_17 AC 329 ms
55,564 KB
testcase_18 AC 40 ms
15,380 KB
testcase_19 AC 248 ms
48,844 KB
testcase_20 AC 13 ms
6,940 KB
testcase_21 AC 24 ms
11,008 KB
testcase_22 AC 199 ms
40,140 KB
testcase_23 AC 96 ms
24,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::cmp::*`
 --> src/main.rs:1:5
  |
1 | use std::cmp::*;
  |     ^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

ソースコード

diff #

use std::cmp::*;
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;
        ans %= 1_000_000_007;
        for &nv in g[v].iter() {
            dist[nv] = dist[v] + 1;
            q.push_back(nv);
        }
    }
    println!("{}", ans);
}
0