結果
問題 | No.2638 Initial fare |
ユーザー | naut3 |
提出日時 | 2024-02-19 21:49:03 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,401 bytes |
コンパイル時間 | 14,389 ms |
コンパイル使用メモリ | 405,196 KB |
実行使用メモリ | 36,680 KB |
最終ジャッジ日時 | 2024-09-29 01:46:41 |
合計ジャッジ時間 | 20,209 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,632 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 790 ms
15,676 KB |
testcase_05 | AC | 798 ms
16,380 KB |
testcase_06 | AC | 1 ms
6,820 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 | -- | - |
ソースコード
#![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 { let mut q = std::collections::VecDeque::new(); q.push_front(i); let mut seen = std::collections::HashSet::new(); seen.insert(i); let mut dist = std::collections::HashMap::new(); dist.insert(i, 0_usize); while let Some(now) = q.pop_front() { let dnow = *dist.get(&now).unwrap(); if dnow == 3 { continue; } for &nxt in graph[now].iter() { if seen.contains(&nxt) { continue; } q.push_back(nxt); seen.insert(nxt); dist.insert(nxt, dnow + 1); ans += 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()) } } } }