結果

問題 No.1958 Bit Game
ユーザー phsplsphspls
提出日時 2022-10-12 11:21:45
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,699 bytes
コンパイル時間 25,148 ms
コンパイル使用メモリ 378,176 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-26 05:30:22
合計ジャッジ時間 27,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
9,472 KB
testcase_01 AC 150 ms
9,472 KB
testcase_02 AC 106 ms
9,472 KB
testcase_03 AC 81 ms
9,472 KB
testcase_04 AC 80 ms
9,472 KB
testcase_05 AC 81 ms
9,600 KB
testcase_06 AC 80 ms
9,472 KB
testcase_07 AC 80 ms
9,472 KB
testcase_08 AC 80 ms
9,472 KB
testcase_09 AC 118 ms
9,472 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 40 ms
5,504 KB
testcase_12 AC 42 ms
6,784 KB
testcase_13 AC 49 ms
5,888 KB
testcase_14 AC 46 ms
5,504 KB
testcase_15 AC 35 ms
7,552 KB
testcase_16 AC 22 ms
5,632 KB
testcase_17 AC 65 ms
8,192 KB
testcase_18 AC 58 ms
8,192 KB
testcase_19 AC 30 ms
6,400 KB
testcase_20 AC 58 ms
5,504 KB
testcase_21 AC 41 ms
7,680 KB
testcase_22 AC 32 ms
5,376 KB
testcase_23 AC 22 ms
5,376 KB
testcase_24 AC 66 ms
7,168 KB
testcase_25 AC 28 ms
5,376 KB
testcase_26 AC 53 ms
5,504 KB
testcase_27 AC 30 ms
7,168 KB
testcase_28 AC 62 ms
6,400 KB
testcase_29 AC 33 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: usize = 998244353;
const BITS: usize = 18;

fn main() {
    let mut nxy = String::new();
    std::io::stdin().read_line(&mut nxy).ok();
    let nxy: Vec<usize> = nxy.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nxy[0];
    let x = nxy[1];
    let y = nxy[2];
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut b = String::new();
    std::io::stdin().read_line(&mut b).ok();
    let b: Vec<usize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut acnts = vec![vec![0usize; 2]; BITS];
    let mut bcnts = vec![vec![0usize; 2]; BITS];
    for i in 0..x {
        for bit in 0..BITS {
            acnts[bit][(a[i] >> bit) & 1] += 1;
        }
    }
    for i in 0..y {
        for bit in 0..BITS {
            bcnts[bit][(b[i] >> bit) & 1] += 1;
        }
    }
    let mut base = vec![vec![0usize; 2]; BITS];
    for i in 0..BITS { base[i][0] = 1; }
    for _ in 0..n {
        for bidx in 0..BITS {
            (base[bidx][0], base[bidx][1]) = (base[bidx][0] * acnts[bidx][0], base[bidx][1] * (acnts[bidx][0] + acnts[bidx][1]) + base[bidx][0] * acnts[bidx][1]);
            base[bidx][0] %= MOD;
            base[bidx][1] %= MOD;
            (base[bidx][0], base[bidx][1]) = (base[bidx][0] * (bcnts[bidx][0] + bcnts[bidx][1]) + base[bidx][1] * bcnts[bidx][0], base[bidx][1] * bcnts[bidx][1]);
            base[bidx][0] %= MOD;
            base[bidx][1] %= MOD;
        }
    }
    let result = (0..BITS).map(|i| base[i][1] * (1usize << i) % MOD).sum::<usize>() % MOD;
    println!("{}", result);
}
0