結果

問題 No.440 2次元チワワ問題
ユーザー pekempeypekempey
提出日時 2016-10-29 03:48:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 1,760 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 163,436 KB
実行使用メモリ 7,088 KB
最終ジャッジ日時 2024-05-03 08:39:04
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 27 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 30 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 27 ms
6,944 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 43 ms
6,944 KB
testcase_18 AC 44 ms
7,008 KB
testcase_19 AC 44 ms
6,944 KB
testcase_20 AC 44 ms
7,024 KB
testcase_21 AC 87 ms
7,088 KB
testcase_22 AC 94 ms
7,040 KB
testcase_23 AC 90 ms
6,944 KB
testcase_24 AC 88 ms
6,944 KB
testcase_25 AC 90 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:57: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=]
   57 |     for (int i = 0; i < q; i++) printf("%lld\n", ans[i]);
      |                                         ~~~^
      |                                            |
      |                                            long long int
      |                                         %ld
main.cpp:25:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |     for (int i = 0; i < h; i++) scanf("%s", s[i]);
      |                                 ~~~~~^~~~~~~~~~~~
main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |         scanf("%hd %hd %hd %hd", &y1[i], &x1[i], &y2[i], &x2[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

const int N = 500;

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

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

void calc() {
    for (int i = 0; i < h; i++) {
        memset(&dp[i][0], 0, sizeof(dp[i][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__;
            dp[i][j + 1].cww = dp[i][j].cww + (s[i][j] == 'w') * dp[i][j].cw_;
        }
    }
}

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

    vector<short> y1(q), x1(q), y2(q), x2(q);
    for (int i = 0; i < q; i++) {
        scanf("%hd %hd %hd %hd", &y1[i], &x1[i], &y2[i], &x2[i]);
        y1[i]--; x1[i]--; x2[i]--; y2[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++) {
                short L = x1[k], R = x2[k] + 1;
                for (short i = y1[k]; i <= y2[k]; i++) {
                    int W = (R - L) - (dp[i][R].c__ - dp[i][L].c__);
                    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, x2);
        }
        for (int i = 0; i < N; i++) for (int j = 0; j < i; j++) swap(s[i][j], s[j][i]);
        swap(h, w);
        swap(y1, x1);
        swap(y2, x2); 
    }
    for (int i = 0; i < q; i++) printf("%lld\n", ans[i]);
}
0