結果

問題 No.2638 Initial fare
ユーザー nautnaut
提出日時 2024-02-19 22:02:07
言語 Rust
(1.77.0)
結果
TLE  
実行時間 -
コード長 2,064 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 183,936 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-02-19 22:02:13
合計ジャッジ時間 6,064 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,480 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 82 ms
15,576 KB
testcase_05 AC 109 ms
16,328 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_imports, unused_must_use)]
use std::io::{self, prelude::*};
use std::str;

fn main() {
    let (stdin, stdout) = (io::stdin(), io::stdout());
    let mut scan = Scanner::new(stdin.lock());
    let mut out = io::BufWriter::new(stdout.lock());

    macro_rules! input {
        ($T: ty) => {
            scan.token::<$T>()
        };
        ($T: ty, $N: expr) => {
            (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>()
        };
    }

    let N = input!(usize);

    let mut graph = vec![vec![]; N];

    for _ in 0..N - 1 {
        let (u, v) = (input!(usize) - 1, input!(usize) - 1);
        graph[u].push(v);
        graph[v].push(u);
    }

    // 距離が低い方にだけ移動するような探索
    let mut ans = 0usize;

    for i in 0..N {
        for &n1 in graph[i].iter() {
            ans += 1;
            for &n2 in graph[n1].iter() {
                if n2 == i {
                    continue;
                }

                ans += 1;

                let l = graph[n2].len();
                if l == 0 {
                    continue;
                }
                ans += l - 1;
            }
        }
    }

    writeln!(out, "{}", ans / 2);
}

struct Scanner<R> {
    reader: R,
    buf_str: Vec<u8>,
    buf_iter: str::SplitWhitespace<'static>,
}
impl<R: BufRead> Scanner<R> {
    fn new(reader: R) -> Self {
        Self {
            reader,
            buf_str: vec![],
            buf_iter: "".split_whitespace(),
        }
    }
    fn token<T: str::FromStr>(&mut self) -> T {
        loop {
            if let Some(token) = self.buf_iter.next() {
                return token.parse().ok().expect("Failed parse");
            }
            self.buf_str.clear();
            self.reader
                .read_until(b'\n', &mut self.buf_str)
                .expect("Failed read");
            self.buf_iter = unsafe {
                let slice = str::from_utf8_unchecked(&self.buf_str);
                std::mem::transmute(slice.split_whitespace())
            }
        }
    }
}
0