結果

問題 No.440 2次元チワワ問題
ユーザー tossytossy
提出日時 2016-10-29 17:03:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,985 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 95,580 KB
実行使用メモリ 814,140 KB
最終ジャッジ日時 2024-05-03 15:52:12
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 8 ms
9,088 KB
testcase_05 AC 5 ms
6,400 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 132 ms
140,928 KB
testcase_08 AC 215 ms
139,264 KB
testcase_09 MLE -
testcase_10 AC 174 ms
134,656 KB
testcase_11 AC 47 ms
37,248 KB
testcase_12 AC 250 ms
278,016 KB
testcase_13 MLE -
testcase_14 AC 9 ms
7,296 KB
testcase_15 MLE -
testcase_16 AC 20 ms
5,376 KB
testcase_17 MLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <vector>
#include <set>
#include <map>
#include <bitset>
#include <functional>
using namespace std;

#define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repl(i,0,n)
#define mp(a,b) make_pair((a),(b))
#define pb(a) push_back(a)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<(x)<<endl
#define fi first
#define se second

#define INF 2147483600

int yoko[500][500][500];
int tate[500][500][500];

int main(){
  int h,w;
  cin>>h>>w;
  vector<string> vec(h);
  rep(i,h) cin>>vec[i];

  rep(i,h){
    rep(l,w){
      int cnt= (vec[i][l]=='w');
      yoko[i][l][l]=0;
      repl(r,l+1,w){
        yoko[i][l][r] = yoko[i][l][r-1];
        if(vec[i][r]=='c') yoko[i][l][r] += cnt*(cnt-1)/2;
        else cnt++;
      }
    }
    for(int r=w-1; r>=0; r--){
      int cnt= (vec[i][r]=='w');
      int prev=0;
      for(int l=r-1; l>=0; l--){
        if(vec[i][l]=='c') prev += cnt*(cnt-1)/2;
        else cnt++;
        yoko[i][l][r] += prev;
//        cout<<i<<","<<l<<","<<r<<":"<<yoko[i][l][r]<<endl;
      }
    }
  }

  rep(i,w){
    rep(l,h){
      int cnt= (vec[l][i]=='w');
      repl(r,l+1,h){
        tate[i][l][r] = tate[i][l][r-1];
        if(vec[r][i]=='c') tate[i][l][r] += cnt*(cnt-1)/2;
        else cnt++;
      }
    }
    for(int r=h-1; r>=0; r--){
      int cnt= (vec[r][i]=='w');
      int prev=0;
      for(int l=r-1; l>=0; l--){
        if(vec[l][i]=='c') prev += cnt*(cnt-1)/2;
        else cnt++;
        tate[i][l][r] += prev;
      }
    }
  }

  int q;
  cin>>q;
  rep(loops,q){
    int a,b,c,d;
    scanf("%d %d %d %d", &a, &b, &c, &d);
    a--;b--;c--;d--;
    long res=0;
    for(int i=a; i<=c; i++){
      res += (long)yoko[i][b][d];
    }
    for(int i=b; i<=d; i++){
      res += (long)tate[i][a][c];
    }
    cout<<res<<endl;
  }

  return 0;
}
0