結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー StrorkisStrorkis
提出日時 2021-03-05 22:36:34
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 13,790 ms
コンパイル使用メモリ 378,312 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-10-07 03:19:16
合計ジャッジ時間 14,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

fn dfs(ans: &mut usize, graph: &[Vec<usize>], prev: usize, from: usize) -> usize {
    let n = graph.len();
    let mut count = 0;
    for &to in &graph[from] {
        if to == prev { continue; }
        let x = dfs(ans, graph, from, to);
        *ans += x * (n - x);
        count += x;
    }
    *ans += (n - count - 1) * (count + 1) + n;
    count + 1
}

fn run<'a, F: FnMut() -> &'a str, W: std::io::Write>(scan: &mut F, writer: &mut W) {
    macro_rules! scan {
        ([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::<Vec<_>>());
        (($($t:tt),*)) => (($(scan!($t)),*));
        (Usize1) => (scan!(usize) - 1);
        (Bytes) => (scan().as_bytes().to_vec());
        ($t:ty) => (scan().parse::<$t>().unwrap());
    }
    macro_rules! println {
        ($($arg:tt)*) => (writeln!(writer, $($arg)*).ok());
    }

    let n = scan!(usize);

    let mut graph = vec![vec![]; n];
    for _ in 0..(n - 1) {
        let (a, b) = scan!((Usize1, Usize1));
        graph[a].push(b);
        graph[b].push(a);
    }

    let mut ans = 0;
    dfs(&mut ans, &graph, !0, 0);
    println!("{}", ans);
}

fn main() {
    let ref mut buf = Vec::new();
    std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok();
    let mut scanner = unsafe {
        std::str::from_utf8_unchecked(buf).split_ascii_whitespace()
    };
    let ref mut scan = || scanner.next().unwrap();

    let stdout = std::io::stdout();
    let ref mut writer = std::io::BufWriter::new(stdout.lock());

    run(scan, writer);
}
0