結果

問題 No.1332 Range Nearest Query
ユーザー akakimidoriakakimidori
提出日時 2021-02-15 19:47:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 523 ms / 2,500 ms
コード長 1,963 bytes
コンパイル時間 13,333 ms
コンパイル使用メモリ 387,436 KB
実行使用メモリ 66,504 KB
最終ジャッジ日時 2024-07-23 11:49:31
合計ジャッジ時間 30,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 451 ms
48,808 KB
testcase_04 AC 449 ms
48,936 KB
testcase_05 AC 461 ms
48,808 KB
testcase_06 AC 266 ms
66,376 KB
testcase_07 AC 262 ms
66,376 KB
testcase_08 AC 260 ms
66,380 KB
testcase_09 AC 259 ms
66,380 KB
testcase_10 AC 258 ms
66,376 KB
testcase_11 AC 260 ms
66,504 KB
testcase_12 AC 260 ms
66,376 KB
testcase_13 AC 260 ms
66,376 KB
testcase_14 AC 260 ms
66,504 KB
testcase_15 AC 255 ms
66,376 KB
testcase_16 AC 507 ms
66,376 KB
testcase_17 AC 511 ms
66,376 KB
testcase_18 AC 499 ms
66,376 KB
testcase_19 AC 523 ms
66,372 KB
testcase_20 AC 517 ms
66,376 KB
testcase_21 AC 507 ms
66,376 KB
testcase_22 AC 497 ms
66,380 KB
testcase_23 AC 510 ms
66,376 KB
testcase_24 AC 505 ms
66,376 KB
testcase_25 AC 512 ms
66,376 KB
testcase_26 AC 161 ms
66,376 KB
testcase_27 AC 164 ms
66,504 KB
testcase_28 AC 13 ms
5,376 KB
testcase_29 AC 14 ms
5,376 KB
testcase_30 AC 16 ms
5,376 KB
testcase_31 AC 13 ms
5,376 KB
testcase_32 AC 16 ms
5,376 KB
testcase_33 AC 15 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 14 ms
5,376 KB
testcase_36 AC 14 ms
5,376 KB
testcase_37 AC 15 ms
5,376 KB
testcase_38 AC 324 ms
35,156 KB
testcase_39 AC 72 ms
6,400 KB
testcase_40 AC 519 ms
65,320 KB
testcase_41 AC 165 ms
13,564 KB
testcase_42 AC 325 ms
34,124 KB
testcase_43 AC 219 ms
21,220 KB
testcase_44 AC 411 ms
44,324 KB
testcase_45 AC 379 ms
40,984 KB
testcase_46 AC 260 ms
25,852 KB
testcase_47 AC 355 ms
38,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read() -> (Vec<u32>, Vec<(usize, usize, u32)>) {
    use std::io::*;
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut it = s.trim().split_whitespace();
    let mut next = || it.next().unwrap().parse::<u32>().unwrap();
    let n = next();
    let x = (0..n).map(|_| next()).collect::<Vec<_>>();
    let q = next();
    let ask = (0..q).map(|_| {
        let l = next() as usize - 1;
        let r = next() as usize;
        let x = next();
        (l, r, x)
    }).collect::<Vec<_>>();
    (x, ask)
}

fn main() {
    let (x, ask) = read();
    let size = x.len().next_power_of_two();
    let mut seg = vec![vec![]; 2 * size];
    for (seg, x) in seg[size..].iter_mut().zip(x.into_iter()) {
        seg.push(x);
    }
    for i in (1..size).rev() {
        let mut a = Vec::with_capacity(seg[2 * i].len() + seg[2 * i + 1].len());
        a.extend_from_slice(&seg[2 * i]);
        a.extend_from_slice(&seg[2 * i + 1]);
        a.sort();
        a.dedup();
        seg[i] = a;
    }
    let calc = |a: &[u32], x: u32| -> u32 {
        let y = a.binary_search_by_key(&(x, 0), |a| (*a, 1)).unwrap_err();
        let mut ans = std::u32::MAX;
        a.get(y).map(|a| ans = ans.min(*a - x));
        a.get(y - 1).map(|a| ans = ans.min(x - *a));
        ans
    };
    let find = |mut l: usize, mut r: usize, x: u32| -> u32 {
        l += size;
        r += size;
        let mut ans = std::u32::MAX;
        while l < r {
            if l & 1 == 1 {
                ans = ans.min(calc(&seg[l], x));
                l += 1;
            }
            if r & 1 == 1 {
                r -= 1;
                ans = ans.min(calc(&seg[r], x));
            }
            l >>= 1;
            r >>= 1;
        }
        ans
    };
    use std::io::Write;
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    for (l, r, x) in ask {
        writeln!(out, "{}", find(l, r, x)).ok();
    }
}
0