結果

問題 No.1170 Never Want to Walk
ユーザー fukafukatanifukafukatani
提出日時 2020-10-07 21:19:09
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 3,219 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 155,716 KB
実行使用メモリ 11,896 KB
最終ジャッジ日時 2023-09-27 09:58:25
合計ジャッジ時間 7,670 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 3 ms
4,380 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 310 ms
10,364 KB
testcase_33 AC 317 ms
10,976 KB
testcase_34 AC 329 ms
10,540 KB
testcase_35 AC 327 ms
10,412 KB
testcase_36 AC 305 ms
10,272 KB
testcase_37 AC 320 ms
10,344 KB
testcase_38 AC 325 ms
10,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
use std::cmp::*;
use std::collections::*;
use std::io::Write;
use std::ops::Bound::*;

#[allow(unused_macros)]
macro_rules! debug {
    ($($e:expr),*) => {
        #[cfg(debug_assertions)]
        $({
            let (e, mut err) = (stringify!($e), std::io::stderr());
            writeln!(err, "{} = {:?}", e, $e).unwrap()
        })*
    };
}

fn main() {
    let v = read_vec::<i64>();
    let (n, a, b) = (v[0] as usize, v[1], v[2]);
    let x = read_vec::<i64>()
        .into_iter()
        .enumerate()
        .map(|x| (x.1, x.0))
        .collect::<BTreeSet<_>>();
    let mut edges = vec![std::usize::MAX; n];

    for &xnum in &x {
        let mut left = x.range((Included((xnum.0 + a, 0)), Included((xnum.0 + b, n + 1))));
        if let Some(left) = left.next() {
            let left = left.1;
            let right = x
                .range((Included((xnum.0 + a, 0)), Included((xnum.0 + b, n + 1))))
                .rev()
                .next()
                .unwrap()
                .1;
            edges[xnum.1] = right;
            for i in (left..right).rev() {
                if edges[i] != std::usize::MAX {
                    break;
                }
                edges[i] = right;
            }
        }
    }
    let mut uft = UnionFindTree::new(n);
    for (i, to) in edges.into_iter().enumerate() {
        if to == std::usize::MAX {
            continue;
        }
        uft.unite(i, to);
    }
    for i in 0..n {
        println!("{}", uft.get_size(i));
    }
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}

#[derive(Debug, Clone)]
struct UnionFindTree {
    parent: Vec<isize>,
    size: Vec<usize>,
    height: Vec<u64>,
}

impl UnionFindTree {
    fn new(n: usize) -> UnionFindTree {
        UnionFindTree {
            parent: vec![-1; n],
            size: vec![1usize; n],
            height: vec![0u64; n],
        }
    }

    fn find(&mut self, index: usize) -> usize {
        if self.parent[index] == -1 {
            return index;
        }
        let idx = self.parent[index] as usize;
        let ret = self.find(idx);
        self.parent[index] = ret as isize;
        ret
    }

    fn get_size(&mut self, x: usize) -> usize {
        let idx = self.find(x);
        self.size[idx]
    }

    fn unite(&mut self, index0: usize, index1: usize) -> bool {
        let a = self.find(index0);
        let b = self.find(index1);
        if a == b {
            false
        } else {
            if self.height[a] > self.height[b] {
                self.parent[b] = a as isize;
                self.size[a] += self.size[b];
            } else if self.height[a] < self.height[b] {
                self.parent[a] = b as isize;
                self.size[b] += self.size[a];
            } else {
                self.parent[b] = a as isize;
                self.size[a] += self.size[b];
                self.height[a] += 1;
            }
            true
        }
    }
}
0