結果

問題 No.868 ハイパー部分和問題
ユーザー akakimidoriakakimidori
提出日時 2020-03-08 16:17:39
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 4,304 ms / 7,000 ms
コード長 2,523 bytes
コンパイル時間 13,623 ms
コンパイル使用メモリ 382,368 KB
実行使用メモリ 9,624 KB
最終ジャッジ日時 2024-11-07 07:58:04
合計ジャッジ時間 101,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 3,129 ms
9,616 KB
testcase_15 AC 3,110 ms
9,612 KB
testcase_16 AC 3,107 ms
9,488 KB
testcase_17 AC 3,083 ms
9,616 KB
testcase_18 AC 3,080 ms
9,616 KB
testcase_19 AC 4,290 ms
8,144 KB
testcase_20 AC 4,282 ms
8,148 KB
testcase_21 AC 4,214 ms
8,276 KB
testcase_22 AC 4,226 ms
8,144 KB
testcase_23 AC 4,196 ms
8,288 KB
testcase_24 AC 4,304 ms
8,136 KB
testcase_25 AC 4,288 ms
8,160 KB
testcase_26 AC 4,230 ms
8,160 KB
testcase_27 AC 4,243 ms
8,164 KB
testcase_28 AC 4,271 ms
8,164 KB
testcase_29 AC 3,061 ms
9,624 KB
testcase_30 AC 3,038 ms
9,560 KB
testcase_31 AC 3,052 ms
9,504 KB
testcase_32 AC 3,062 ms
9,476 KB
testcase_33 AC 3,066 ms
9,484 KB
testcase_34 AC 3,075 ms
9,396 KB
testcase_35 AC 3,074 ms
9,392 KB
testcase_36 AC 3,396 ms
8,900 KB
testcase_37 AC 3,553 ms
8,768 KB
testcase_38 AC 1 ms
6,820 KB
testcase_39 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;
use std::io::Write;

fn run() {
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut it = s.trim().split_whitespace();
    let n: usize = it.next().unwrap().parse().unwrap();
    let m: usize = it.next().unwrap().parse().unwrap();
    let mut a = vec![(0usize, 0); n];
    for a in a.iter_mut() {
        a.0 = it.next().unwrap().parse().unwrap();
    }
    let q: usize = it.next().unwrap().parse().unwrap();
    let mut edge = vec![];
    for i in 0..q {
        let x = it.next().unwrap().parse::<usize>().unwrap() - 1;
        let v: usize = it.next().unwrap().parse().unwrap();
        if i > 0 {
            edge.push((a[x].1, i, a[x].0));
        }
        a[x] = (v, i);
    }
    for (a, s) in a {
        edge.push((s, q, a));
    }
    let w = std::mem::size_of::<usize>() * 8;
    let mut bit = vec![0usize; m / w + 1];
    bit[0] = 1;
    let mut tmp = vec![0usize; m / w + 2];
    let mut stack = vec![(0, q, edge, bit)];
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    while let Some((l, r, e, mut bit)) = stack.pop() {
        let mid = (l + r) / 2;
        let mut left = vec![];
        let mut right = vec![];
        for (x, y, v) in e {
            if x <= l && r <= y {
                tmp.clear();
                tmp.resize(m / w + 2, 0);
                let q = v / w;
                let r = v % w;
                if r == 0 {
                    for (t, bit) in tmp.iter_mut().fuse().skip(q).zip(bit.iter()) {
                        *t = *bit;
                    }
                } else {
                    for (t, bit) in tmp.iter_mut().fuse().skip(q).zip(bit.iter()) {
                        *t |= *bit << r;
                    }
                    for (t, bit) in tmp.iter_mut().fuse().skip(q + 1).zip(bit.iter()) {
                        *t |= *bit >> (w - r);
                    }
                }
                for (bit, tmp) in bit.iter_mut().zip(tmp.iter()) {
                    *bit |= *tmp;
                }
                continue;
            }
            if l < mid {
                left.push((x, y, v));
            }
            if mid < r {
                right.push((x, y, v));
            }
        }
        if l + 1 == r {
            writeln!(out, "{}", (bit[m / w] >> (m % w)) & 1).ok();
        } else {
            stack.push((mid, r, right, bit.clone()));
            stack.push((l, mid, left, bit));
        }
    }
}

fn main() {
    run();
}
0