結果

問題 No.440 2次元チワワ問題
ユーザー tnakao0123tnakao0123
提出日時 2016-11-03 19:32:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 482 ms / 5,000 ms
コード長 1,860 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 85,564 KB
実行使用メモリ 492,928 KB
最終ジャッジ日時 2024-05-03 21:44:23
合計ジャッジ時間 6,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 6 ms
8,704 KB
testcase_05 AC 4 ms
6,272 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 79 ms
103,680 KB
testcase_08 AC 128 ms
121,728 KB
testcase_09 AC 241 ms
347,008 KB
testcase_10 AC 102 ms
122,368 KB
testcase_11 AC 37 ms
35,200 KB
testcase_12 AC 105 ms
147,072 KB
testcase_13 AC 280 ms
351,104 KB
testcase_14 AC 7 ms
7,296 KB
testcase_15 AC 312 ms
380,288 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 482 ms
492,928 KB
testcase_18 AC 414 ms
492,824 KB
testcase_19 AC 422 ms
492,672 KB
testcase_20 AC 426 ms
492,928 KB
testcase_21 AC 393 ms
492,800 KB
testcase_22 AC 380 ms
492,928 KB
testcase_23 AC 370 ms
492,804 KB
testcase_24 AC 443 ms
492,720 KB
testcase_25 AC 389 ms
492,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 440.cc: No.440 2次元チワワ問題 - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_H = 500;
const int MAX_N = 10000;

/* typedef */

typedef long long ll;

/* global variables */

string brds[MAX_N];
int y0s[MAX_N], x0s[MAX_N], y1s[MAX_N], x1s[MAX_N];
ll ans[MAX_N];
int dp[MAX_H][MAX_H][MAX_H];

/* subroutines */

/* main */

int main() {
  int h, w;
  cin >> h >> w;

  for (int y = 0; y < h; y++) cin >> brds[y];

  int n;
  cin >> n;
  for (int i = 0; i < n; i++) {
    cin >> y0s[i] >> x0s[i] >> y1s[i] >> x1s[i];
    y0s[i]--, x0s[i]--, y1s[i]--, x1s[i]--;
  }

  for (int y = 0; y < h; y++)
    for (int x0 = 0; x0 < w; x0++) {
      int cn = 0, wn = 0;
      int ww = 0, cw = 0;
      int cww = 0, wwc = 0;
      for (int x1 = x0; x1 < w; x1++) {
	if (brds[y][x1] == 'c') wwc += ww, cn++;
	else cww += cw, ww += wn, cw += cn, wn++;
	dp[y][x0][x1] = cww + wwc;
      }
    }

  for (int i = 0; i < n; i++)
    for (int y = y0s[i]; y <= y1s[i]; y++)
      ans[i] += dp[y][x0s[i]][x1s[i]];

  for (int x = 0; x < w; x++)
    for (int y0 = 0; y0 < h; y0++) {
      int cn = 0, wn = 0;
      int ww = 0, cw = 0;
      int cww = 0, wwc = 0;
      for (int y1 = y0; y1 < h; y1++) {
	if (brds[y1][x] == 'c') wwc += ww, cn++;
	else cww += cw, ww += wn, cw += cn, wn++;
	dp[x][y0][y1] = cww + wwc;
      }
    }

  for (int i = 0; i < n; i++)
    for (int x = x0s[i]; x <= x1s[i]; x++)
      ans[i] += dp[x][y0s[i]][y1s[i]];

  for (int i = 0; i < n; i++) printf("%lld\n", ans[i]);
  return 0;
}
0