結果

問題 No.1424 Ultrapalindrome
ユーザー StrorkisStrorkis
提出日時 2021-03-12 23:57:39
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 2,106 bytes
コンパイル時間 11,452 ms
コンパイル使用メモリ 379,240 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-10-14 16:28:43
合計ジャッジ時間 13,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 20 ms
8,704 KB
testcase_10 AC 20 ms
8,704 KB
testcase_11 AC 13 ms
6,656 KB
testcase_12 AC 19 ms
8,320 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 12 ms
7,168 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 9 ms
6,016 KB
testcase_17 AC 10 ms
6,912 KB
testcase_18 AC 9 ms
5,632 KB
testcase_19 AC 13 ms
7,168 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 10 ms
6,016 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 16 ms
8,064 KB
testcase_27 AC 20 ms
10,880 KB
testcase_28 AC 14 ms
10,496 KB
testcase_29 AC 16 ms
10,880 KB
testcase_30 AC 16 ms
12,416 KB
testcase_31 AC 16 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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];
    let mut degree = vec![0; n];
    for _ in 0..(n - 1) {
        let (a, b) = scan!((Usize1, Usize1));
        graph[a].push(b);
        graph[b].push(a);
        degree[a] += 1;
        degree[b] += 1;
    }

    let count = degree.iter().filter(|&&d| d >= 3).count();
    if count >= 2 {
        println!("No");
        return;
    } else if count == 0 {
        println!("Yes");
        return;
    }

    let mut root = 0;
    for (i, &d) in degree.iter().enumerate() {
        if d >= 3 {
            root = i;
        }
    }

    let mut deque = std::collections::VecDeque::new();
    deque.push_back(root);
    let mut dist = vec![0; n];
    dist[root] = 1;
    while let Some(from) = deque.pop_front() {
        for &to in &graph[from] {
            if dist[to] == 0 {
                deque.push_back(to);
                dist[to] = dist[from] + 1;
            }
        }
    }

    let mut set = {
        degree.iter().enumerate()
            .filter(|(_, &d)| d == 1)
            .map(|(i, _)| dist[i])
            .collect::<Vec<_>>()
    };
    set.dedup();

    if set.len() == 1 {
        println!("Yes");
    } else {
        println!("No");
    }
}

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