結果

問題 No.2923 Mayor's Job
ユーザー atcoder8atcoder8
提出日時 2024-10-12 16:22:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 14,432 ms
コンパイル使用メモリ 378,820 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:23:12
合計ジャッジ時間 15,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 9 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::BTreeMap;

use proconio::input;

fn main() {
    input! {
        (n, k): (usize, usize),
        hh: [usize; n],
        xy: [(usize, usize); n],
    }

    let square_k = k.pow(2);

    let mut coords_per_history: BTreeMap<usize, Vec<(usize, usize)>> = BTreeMap::new();
    for (&h, &coord) in hh.iter().zip(&xy) {
        coords_per_history.entry(h).or_default().push(coord);
    }

    let mut num_removed_shrines = 0_usize;
    let mut candidate_coords: Vec<(usize, usize)> = vec![];
    for coords in coords_per_history.into_values() {
        let check_removable = |low_coord: (usize, usize)| {
            coords
                .iter()
                .any(|&high_coord| calc_square_dist(low_coord, high_coord) <= square_k)
        };

        let prev_num_candidates = candidate_coords.len();
        candidate_coords.retain(|&low_coord| !check_removable(low_coord));
        num_removed_shrines += prev_num_candidates - candidate_coords.len();
        candidate_coords.extend(coords);
    }

    println!("{}", n - num_removed_shrines);
}

fn calc_square_dist(coord1: (usize, usize), coord2: (usize, usize)) -> usize {
    let (x1, y1) = coord1;
    let (x2, y2) = coord2;
    x1.abs_diff(x2).pow(2) + y1.abs_diff(y2).pow(2)
}
0