結果

問題 No.440 2次元チワワ問題
ユーザー koba-e964koba-e964
提出日時 2021-09-29 09:54:18
言語 Rust
(1.77.0)
結果
AC  
実行時間 872 ms / 5,000 ms
コード長 3,475 bytes
コンパイル時間 4,321 ms
コンパイル使用メモリ 146,512 KB
実行使用メモリ 34,964 KB
最終ジャッジ日時 2023-09-23 07:52:43
合計ジャッジ時間 8,341 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 15 ms
6,704 KB
testcase_08 AC 39 ms
6,980 KB
testcase_09 AC 115 ms
17,484 KB
testcase_10 AC 13 ms
6,708 KB
testcase_11 AC 12 ms
4,376 KB
testcase_12 AC 25 ms
11,324 KB
testcase_13 AC 149 ms
23,552 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 144 ms
25,724 KB
testcase_16 AC 6 ms
4,376 KB
testcase_17 AC 274 ms
34,956 KB
testcase_18 AC 270 ms
34,928 KB
testcase_19 AC 277 ms
34,932 KB
testcase_20 AC 273 ms
34,904 KB
testcase_21 AC 861 ms
34,964 KB
testcase_22 AC 855 ms
34,904 KB
testcase_23 AC 872 ms
34,864 KB
testcase_24 AC 865 ms
34,944 KB
testcase_25 AC 835 ms
34,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::{Write, BufWriter};
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, usize1) => (read_value!($next, usize) - 1);
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

struct Data {
    cww: Vec<i64>,
    w: Vec<i64>,
    c: Vec<i64>,
    cw: Vec<i64>,
}

impl Data {
    fn with(s: &[char]) -> Self {
        let n = s.len();
        let mut cww = vec![0; n + 1];
        let mut c = vec![0; n + 1];
        let mut w = vec![0; n + 1];
        let mut cw = vec![0; n + 1];
        for i in 0..n {
            cww[i + 1] = cww[i];
            c[i + 1] = c[i];
            w[i + 1] = w[i];
            cw[i + 1] = cw[i];
            if s[i] == 'c' {
                c[i + 1] += 1;
            } else {
                w[i + 1] += 1;
                cw[i + 1] += c[i];
                cww[i + 1] += cw[i];
            }
        }
        Data {
            cww: cww,
            w: w,
            c: c,
            cw: cw,
        }
    }
    // Counts cww.
    fn query(&self, a: usize, b: usize) -> i64 {
        let mut ans = self.cww[b] - self.cww[a];
        let rw = self.w[b] - self.w[a];
        ans -= self.c[a] * rw * (rw - 1) / 2;
        ans -= self.cw[a] * rw;
        ans
    }
}

fn main() {
    let out = std::io::stdout();
    let mut out = BufWriter::new(out.lock());
    macro_rules! puts {($($format:tt)*) => (let _ = write!(out,$($format)*););}
    input! {
        h: usize, w: usize,
        s: [chars; h],
        q: usize,
        abcd: [(usize1, usize1, usize, usize); q],
    }
    let mut row = vec![];
    let mut row_rev = vec![];
    for i in 0..h {
        row.push(Data::with(&s[i]));
        let mut tmp = s[i].to_vec();
        tmp.reverse();
        row_rev.push(Data::with(&tmp));
    }
    let mut col = vec![];
    let mut col_rev = vec![];
    for i in 0..w {
        let mut tmp = vec!['+'; h];
        for j in 0..h {
            tmp[j] = s[j][i];
        }
        col.push(Data::with(&tmp));
        tmp.reverse();
        col_rev.push(Data::with(&tmp));
    }
    for (a, b, c, d) in abcd {
        let mut ans = 0;
        for i in a..c {
            ans += row[i].query(b, d);
            ans += row_rev[i].query(w - d, w - b);
        }
        for i in b..d {
            ans += col[i].query(a, c);
            ans += col_rev[i].query(h - c, h - a);
        }
        puts!("{}\n", ans);
    }
}
0