結果

問題 No.440 2次元チワワ問題
ユーザー pekempeypekempey
提出日時 2016-10-29 03:03:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 1,914 bytes
コンパイル時間 1,258 ms
コンパイル使用メモリ 163,448 KB
実行使用メモリ 8,160 KB
最終ジャッジ日時 2024-05-03 08:38:33
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 16 ms
7,088 KB
testcase_09 AC 28 ms
7,980 KB
testcase_10 AC 5 ms
7,020 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 30 ms
7,360 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 28 ms
7,628 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 48 ms
8,160 KB
testcase_18 AC 44 ms
8,100 KB
testcase_19 AC 44 ms
7,972 KB
testcase_20 AC 44 ms
7,984 KB
testcase_21 AC 74 ms
7,992 KB
testcase_22 AC 75 ms
7,928 KB
testcase_23 AC 77 ms
7,968 KB
testcase_24 AC 79 ms
7,880 KB
testcase_25 AC 74 ms
8,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:58:44: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘__gnu_cxx::__alloc_traits<std::allocator<long int>, long int>::value_type’ {aka ‘long int’} [-Wformat=]
   58 |     for (int i = 0; i < q; i++) printf("%lld\n", ans[i]);
      |                                         ~~~^
      |                                            |
      |                                            long long int
      |                                         %ld
main.cpp:27:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |     for (int i = 0; i < h; i++) scanf("%s", s[i]);
      |                                 ~~~~~^~~~~~~~~~~~
main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   32 |         scanf("%d %d %d %d", &y1[i], &x1[i], &y2[i], &x2[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int N = 500;
const int Q = 10000;

int h, w, q;
char s[N][N + 1];

struct DP { int c__, cw_, cww, www; };
DP dp[N][N + 1];

void calc() {
    for (int i = 0; i < h; i++) {
        dp[i][0].c__ = dp[i][0].cw_ = dp[i][0].cww = dp[i][0].www = 0;
        for (int j = 0; j < w; j++) {
            dp[i][j + 1].c__ = dp[i][j].c__ + (s[i][j] == 'c');
            dp[i][j + 1].cw_ = dp[i][j].cw_ + (s[i][j] == 'w' ? dp[i][j].c__ : 0);
            dp[i][j + 1].cww = dp[i][j].cww + (s[i][j] == 'w' ? dp[i][j].cw_ : 0);
            dp[i][j + 1].www = dp[i][j].www + (s[i][j] == 'w');
        }
    }
}

int main() {
    std::cin >> h >> w;
    for (int i = 0; i < h; i++) scanf("%s", s[i]);
    std::cin >> q;

    vector<int> y1(q), x1(q), y2(q), x2(q);
    for (int i = 0; i < q; i++) {
        scanf("%d %d %d %d", &y1[i], &x1[i], &y2[i], &x2[i]);
        y1[i]--; x1[i]--; y2[i]--; x2[i]--;
    }

    vector<int64_t> ans(q);
    for (int yy = 0; yy < 2; yy++) {
        for (int xx = 0; xx < 2; xx++) {
            calc();
            for (int k = 0; k < q; k++) {
                int L = x1[k], R = x2[k] + 1;
                for (int i = y1[k]; i <= y2[k]; i++) {
                    int64_t W = dp[i][R].www - dp[i][L].www;
                    ans[k] += dp[i][R].cww - dp[i][L].cww - dp[i][L].c__ * W * (W - 1) / 2 - dp[i][L].cw_ * W;
                }
            }
            for (int i = 0; i < h; i++) reverse(s[i], s[i] + w);
            for (int i = 0; i < q; i++) {
                x1[i] = w - 1 - x1[i];
                x2[i] = w - 1 - x2[i];
                swap(x1[i], x2[i]);
            }
        }
        for (int i = 0; i < N; i++) for (int j = 0; j < i; j++) swap(s[i][j], s[j][i]);
        swap(h, w);
        for (int i = 0; i < q; i++) swap(y1[i], x1[i]), swap(y2[i], x2[i]);
    }
    for (int i = 0; i < q; i++) printf("%lld\n", ans[i]);
}
0