結果

問題 No.2482 Sandglasses
ユーザー 37kt37kt
提出日時 2024-12-05 11:20:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,070 bytes
コンパイル時間 18,897 ms
コンパイル使用メモリ 378,736 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-12-05 11:20:27
合計ジャッジ時間 23,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 62 ms
11,264 KB
testcase_04 AC 59 ms
11,264 KB
testcase_05 AC 61 ms
11,264 KB
testcase_06 AC 61 ms
11,392 KB
testcase_07 AC 60 ms
11,136 KB
testcase_08 AC 59 ms
11,264 KB
testcase_09 AC 59 ms
11,264 KB
testcase_10 AC 56 ms
11,264 KB
testcase_11 AC 59 ms
11,264 KB
testcase_12 AC 60 ms
11,264 KB
testcase_13 AC 58 ms
11,264 KB
testcase_14 AC 58 ms
11,392 KB
testcase_15 AC 59 ms
11,264 KB
testcase_16 AC 59 ms
11,264 KB
testcase_17 AC 58 ms
11,264 KB
testcase_18 AC 58 ms
11,264 KB
testcase_19 AC 58 ms
11,392 KB
testcase_20 AC 60 ms
11,392 KB
testcase_21 AC 59 ms
11,264 KB
testcase_22 AC 58 ms
11,264 KB
testcase_23 AC 58 ms
11,264 KB
testcase_24 AC 58 ms
11,264 KB
testcase_25 AC 60 ms
11,264 KB
testcase_26 AC 56 ms
11,264 KB
testcase_27 AC 57 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use proconio::{
    input,
    marker::{Bytes, Chars, Usize1},
};

fn main() {
    input! {
        n: usize,
        k: i64,
        mut t: i64,
        a: [char; n],
        b: [i64; n],
    }
    t %= k * 2;
    let mut ord = (0..n).collect::<Vec<_>>();
    ord.sort_unstable_by_key(|&i| b[i]);
    let mut x = (0..n)
        .map(|i| {
            let mut x = b[i];
            if a[i] == 'A' {
                x -= t;
                if x < 0 {
                    x += (0 - x) * 2;
                }
                if x > k {
                    x -= (x - k) * 2;
                }
            } else {
                x += t;
                if x > k {
                    x -= (x - k) * 2;
                }
                if x < 0 {
                    x += (0 - x) * 2;
                }
            }
            x
        })
        .collect::<Vec<_>>();
    x.sort_unstable();
    let mut res = vec![0; n];
    for i in 0..n {
        res[ord[i]] = x[i];
    }
    for r in res {
        print!("{} ", r);
    }
    println!();
}
0