結果

問題 No.2837 Flip Triomino
ユーザー ripityripity
提出日時 2024-08-09 22:29:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 213,356 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-09 22:29:13
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 6 ms
6,944 KB
testcase_22 AC 7 ms
6,940 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 7 ms
6,944 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 4 ms
6,944 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 6 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
  int N, M;
  cin >> N >> M;
  vector<string> S(N);
  for(int i = 0; i < N; i++) {
    cin >> S[i];
  }
  vector<int> cnt_q(N + M - 1);
  vector<int> cnt_b(N + M - 1);
  for(int i = 0; i < N; i++) {
    for(int j = 0; j < M; j++) {
      cnt_q[i + j] += (S[i][j] == '?');
      cnt_b[i + j] += (S[i][j] == 'B');
    }
  }
  vector dp(N + M - 1, vector<mint>(4));
  for(int f0 : {0, 1}) for(int f1 : {0, 1}) {
    if(cnt_q[0] == 0 && f0 != cnt_b[0] % 2) continue;
    if(cnt_q[1] == 0 && f1 != cnt_b[1] % 2) continue;
    dp[1][(f0 << 0) | (f1 << 1)] = mint(2).pow(max(0, cnt_q[0] - 1) + max(0, cnt_q[1] - 1));
  }
  for(int i = 2; i < N + M - 1; i++) {
    for(int f0 : {0, 1}) for(int f1 : {0, 1}) for(int f2 : {0, 1}) {
      if(cnt_q[i] == 0 && f2 != cnt_b[i] % 2) continue;
      dp[i][((f1 ^ f0) << 0) | ((f2 ^ f0) << 1)] += dp[i - 1][(f0 << 0) | (f1 << 1)] * mint(2).pow(max(0, cnt_q[i] - 1));
    }
  }
  cout << dp.back()[0].val() << endl;
}
0