結果

問題 No.2837 Flip Triomino
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-08-09 21:51:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,666 bytes
コンパイル時間 4,991 ms
コンパイル使用メモリ 313,784 KB
実行使用メモリ 42,920 KB
最終ジャッジ日時 2024-08-09 21:51:42
合計ジャッジ時間 8,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
42,376 KB
testcase_01 AC 62 ms
42,392 KB
testcase_02 AC 60 ms
42,392 KB
testcase_03 AC 59 ms
42,392 KB
testcase_04 AC 59 ms
42,220 KB
testcase_05 AC 60 ms
42,452 KB
testcase_06 AC 58 ms
42,356 KB
testcase_07 AC 68 ms
42,800 KB
testcase_08 AC 67 ms
42,796 KB
testcase_09 AC 65 ms
42,844 KB
testcase_10 AC 67 ms
42,920 KB
testcase_11 AC 66 ms
42,920 KB
testcase_12 AC 65 ms
42,596 KB
testcase_13 AC 64 ms
42,480 KB
testcase_14 AC 65 ms
42,640 KB
testcase_15 AC 67 ms
42,636 KB
testcase_16 AC 67 ms
42,852 KB
testcase_17 AC 66 ms
42,652 KB
testcase_18 AC 65 ms
42,648 KB
testcase_19 AC 65 ms
42,780 KB
testcase_20 AC 65 ms
42,696 KB
testcase_21 AC 64 ms
42,596 KB
testcase_22 AC 70 ms
42,844 KB
testcase_23 AC 66 ms
42,840 KB
testcase_24 AC 67 ms
42,732 KB
testcase_25 AC 65 ms
42,868 KB
testcase_26 AC 67 ms
42,800 KB
testcase_27 AC 63 ms
42,472 KB
testcase_28 AC 60 ms
42,460 KB
testcase_29 AC 62 ms
42,420 KB
testcase_30 AC 63 ms
42,412 KB
testcase_31 AC 63 ms
42,512 KB
testcase_32 AC 61 ms
42,416 KB
testcase_33 AC 64 ms
42,476 KB
testcase_34 AC 58 ms
42,416 KB
testcase_35 AC 59 ms
42,384 KB
testcase_36 AC 61 ms
42,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

using mint = modint998244353;

typedef long long ll;

struct Comb {
    vector<mint> fact, ifact;
    int MAX_COM;
    Comb() {}
    Comb(int n) {
        MAX_COM = n; // ここでMAX入力を調整
        init(998244353, MAX_COM);
    }
    void init(long long MOD, long long MAX_COM) {
        int n = MAX_COM;
        assert(n < MOD);
        fact = vector<mint>(n + 1);
        ifact = vector<mint>(n + 1);
        fact[0] = 1;
        for (int i = 1; i <= n; ++i)
            fact[i] = fact[i - 1] * i;
        ifact[n] = fact[n].inv();
        for (int i = n; i >= 1; --i)
            ifact[i - 1] = ifact[i] * i;
    }
    mint operator()(long long n, long long k) {
        if (k < 0 || k > n)
            return 0;
        return fact[n] * ifact[k] * ifact[n - k];
    }
};
Comb comb(5000010);

mint f(int bl, int qu, int p) {
    cerr << bl << " " << qu << endl;
    mint res = 0;
    rep(i, 0, qu + 1) {
        if ((bl + i) % 2 == p) {
            res += comb(qu, i);
        }
    }
    return res;
}

int main() {
    int h, w;
    cin >> h >> w;
    vector<string> s(h);
    rep(i, 0, h) cin >> s[i];
    vector<int> bl(3), qu(3);
    rep(i, 0, h) rep(j, 0, w) {
        if (s[i][j] == 'B') {
            bl[(i + j) % 3]++;
        } else if (s[i][j] == '?') {
            qu[(i + j) % 3]++;
        }
    }
    mint ans1 = 1, ans2 = 1;
    rep(i, 0, 3) {
        ans1 *= f(bl[i], qu[i], 0);
        ans2 *= f(bl[i], qu[i], 1);
    }
    mint ans = ans1 + ans2;
    cout << ans.val() << endl;
}
0