結果

問題 No.1950 片道きゃっちぼーる
ユーザー phsplsphspls
提出日時 2022-10-21 09:58:00
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 770 ms / 3,000 ms
コード長 1,769 bytes
コンパイル時間 22,816 ms
コンパイル使用メモリ 398,068 KB
実行使用メモリ 76,172 KB
最終ジャッジ日時 2024-06-30 21:14:21
合計ジャッジ時間 36,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 496 ms
57,956 KB
testcase_04 AC 488 ms
57,916 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 390 ms
30,332 KB
testcase_07 AC 547 ms
76,172 KB
testcase_08 AC 770 ms
75,452 KB
testcase_09 AC 485 ms
57,772 KB
testcase_10 AC 468 ms
50,796 KB
testcase_11 AC 466 ms
53,028 KB
testcase_12 AC 457 ms
53,140 KB
testcase_13 AC 448 ms
42,364 KB
testcase_14 AC 411 ms
35,048 KB
testcase_15 AC 676 ms
57,524 KB
testcase_16 AC 389 ms
31,012 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 555 ms
71,056 KB
testcase_19 AC 676 ms
57,596 KB
testcase_20 AC 466 ms
53,020 KB
testcase_21 AC 455 ms
41,932 KB
testcase_22 AC 451 ms
41,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::{BTreeSet, HashMap, VecDeque};


fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut x = String::new();
    std::io::stdin().read_line(&mut x).ok();
    let x: Vec<isize> = x.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut points = x.iter().copied().collect::<BTreeSet<isize>>();
    for i in 0..n {
        points.insert(x[i] - a[i]);
        points.insert(x[i] + a[i]);
    }
    let mapping = points.iter().enumerate().map(|(i, &v)| (v, i)).collect::<HashMap<isize, usize>>();
    let revmap = points.iter().copied().collect::<Vec<isize>>();
    let n = points.len();
    let mut paths = vec![vec![]; n];
    for i in 0..x.len() {
        let lidx = *mapping.get(&(x[i] - a[i])).unwrap();
        let cidx = *mapping.get(&x[i]).unwrap();
        let ridx = *mapping.get(&(x[i] + a[i])).unwrap();
        paths[ridx].push(cidx);
        paths[lidx].push(cidx);
    }
    let mut result = vec![0usize; n];
    for i in (0..n).rev() {
        if paths[i].is_empty() || result[i] > 0 { continue; }
        let mut deque = VecDeque::new();
        deque.push_back(i);
        while let Some(x) = deque.pop_front() {
            for &v in paths[x].iter() {
                if result[v] > 0 { continue; }
                result[v] = i;
                deque.push_back(v);
            }
        }
    }
    for i in 0..x.len() {
        let idx = *mapping.get(&x[i]).unwrap();
        let rpos = revmap[result[idx]];
        println!("{}", rpos - x[i]);
    }
}
0