結果

問題 No.1950 片道きゃっちぼーる
ユーザー zeronosu77108zeronosu77108
提出日時 2022-05-20 23:26:28
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 2,698 bytes
コンパイル時間 13,715 ms
コンパイル使用メモリ 377,904 KB
実行使用メモリ 28,820 KB
最終ジャッジ日時 2024-09-20 09:54:20
合計ジャッジ時間 46,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2,797 ms
28,112 KB
testcase_04 AC 2,850 ms
28,140 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2,791 ms
27,524 KB
testcase_07 AC 86 ms
28,820 KB
testcase_08 AC 2,156 ms
26,896 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,694 ms
28,420 KB
testcase_12 AC 1,866 ms
28,364 KB
testcase_13 AC 2,808 ms
28,116 KB
testcase_14 AC 2,931 ms
27,072 KB
testcase_15 TLE -
testcase_16 AC 2,851 ms
27,864 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1,699 ms
28,336 KB
testcase_19 TLE -
testcase_20 AC 1,581 ms
28,248 KB
testcase_21 AC 2,906 ms
27,636 KB
testcase_22 AC 2,888 ms
27,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::BTreeMap;

fn main() {
    let n : usize = input();
    let x : Vec<usize> = input_vec();
    let a : Vec<usize> = input_vec();

    let mut index = (0..n).collect::<Vec<_>>();
    index.sort_by_key(|&i| x[i] + a[i]);

    let mut mp = BTreeMap::new();
    let mut ans = vec![0; n];
    for &i in index.iter().rev() {
        let x = x[i];
        let a = a[i];
        let base = *mp.get(&(x + a)).unwrap_or(&0);
        mp.insert(x, base + a);
        ans[i] = base + a;
    }


    for _ in 0..100 {
        for (i, (&x, &a)) in x.iter().zip(a.iter()).enumerate() {
            if x < a { continue }
            let base = *mp.get(&(x - a)).unwrap_or(&0);
            ans[i] = ans[i].max(base.saturating_sub(a));
            mp.insert(x, ans[i]);
        }
    }


    println!("{}", ans.iter().map(|i| i.to_string()).collect::<Vec<_>>().join("\n"));
}

#[allow(dead_code)] fn input<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } #[allow(dead_code)] fn input_t<T: std::str::FromStr, U: std::str::FromStr>() -> (T, U) { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let s = s.trim().split_whitespace().collect::<Vec<&str>>(); (s[0].parse().ok().unwrap(), s[1].parse().ok().unwrap()) } #[allow(dead_code)] fn input_t3<T1: std::str::FromStr, T2: std::str::FromStr, T3: std::str::FromStr>() -> (T1, T2, T3) { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let s = s.trim().split_whitespace().collect::<Vec<&str>>(); (s[0].parse().ok().unwrap(), s[1].parse().ok().unwrap(), s[2].parse().ok().unwrap()) } #[allow(dead_code)] fn input_t4<T1: std::str::FromStr, T2: std::str::FromStr, T3: std::str::FromStr, T4: std::str::FromStr>() -> (T1, T2, T3, T4) { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let s = s.trim().split_whitespace().collect::<Vec<&str>>(); (s[0].parse().ok().unwrap(), s[1].parse().ok().unwrap(), s[2].parse().ok().unwrap(), s[3].parse().ok().unwrap()) } #[allow(dead_code)] fn input_t5<T1: std::str::FromStr, T2: std::str::FromStr, T3: std::str::FromStr, T4: std::str::FromStr, T5: std::str::FromStr>() -> (T1, T2, T3, T4, T5) { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let s = s.trim().split_whitespace().collect::<Vec<&str>>(); (s[0].parse().ok().unwrap(), s[1].parse().ok().unwrap(), s[2].parse().ok().unwrap(), s[3].parse().ok().unwrap(), s[4].parse().ok().unwrap()) } #[allow(dead_code)] fn input_vec<T: std::str::FromStr>() -> Vec<T> { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().split_whitespace().map(|s| s.parse().ok().unwrap()).collect() }
0