結果

問題 No.1950 片道きゃっちぼーる
ユーザー phsplsphspls
提出日時 2022-09-24 19:42:21
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 752 ms / 3,000 ms
コード長 1,856 bytes
コンパイル時間 15,243 ms
コンパイル使用メモリ 398,544 KB
実行使用メモリ 85,244 KB
最終ジャッジ日時 2024-06-01 21:59:57
合計ジャッジ時間 28,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 494 ms
63,484 KB
testcase_04 AC 516 ms
63,364 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 412 ms
36,016 KB
testcase_07 AC 573 ms
85,244 KB
testcase_08 AC 752 ms
83,428 KB
testcase_09 AC 505 ms
62,220 KB
testcase_10 AC 500 ms
54,380 KB
testcase_11 AC 487 ms
55,008 KB
testcase_12 AC 475 ms
55,496 KB
testcase_13 AC 474 ms
46,368 KB
testcase_14 AC 455 ms
38,336 KB
testcase_15 AC 662 ms
62,692 KB
testcase_16 AC 429 ms
36,616 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 575 ms
78,392 KB
testcase_19 AC 654 ms
62,556 KB
testcase_20 AC 484 ms
55,056 KB
testcase_21 AC 469 ms
45,564 KB
testcase_22 AC 467 ms
45,668 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 pointset = BTreeSet::new();
    for i in 0..n {
        pointset.insert(x[i]);
        pointset.insert(x[i]-a[i]);
        pointset.insert(x[i]+a[i]);
    }
    let mut mapping = HashMap::new();
    let mut revmap = vec![0isize; pointset.len()];
    for (i, &v) in pointset.iter().enumerate() {
        mapping.insert(v, i);
        revmap[i] = v;
    }
    let mut paths = vec![vec![]; pointset.len()];
    for i in 0..n {
        let src = *mapping.get(&x[i]).unwrap();
        let left = *mapping.get(&(x[i]-a[i])).unwrap();
        let right = *mapping.get(&(x[i]+a[i])).unwrap();
        paths[left].push(src);
        paths[right].push(src);
    }
    let goals = (0..n).flat_map(|i| vec![x[i]-a[i], x[i]+a[i]]).map(|pos| *mapping.get(&pos).unwrap()).collect::<BTreeSet<usize>>();
    let mut res = vec![0usize; pointset.len()];
    for &src in goals.iter().rev() {
        let mut deque = VecDeque::new();
        deque.push_back(src);
        while let Some(u) = deque.pop_front() {
            for &v in paths[u].iter() {
                if res[v] >= src { continue; }
                res[v] = src;
                deque.push_back(v);
            }
        }
    }
    for i in 0..n {
        let src = x[i];
        let idx = *mapping.get(&src).unwrap();
        println!("{}", revmap[res[idx]] - src);
    }
}
0