結果

問題 No.2837 Flip Triomino
ユーザー ripityripity
提出日時 2024-08-09 22:26:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,068 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 211,464 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-09 22:26:53
合計ジャッジ時間 3,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 7 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 6 ms
6,944 KB
testcase_21 WA -
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 7 ms
6,940 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 3 ms
6,940 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 5 ms
6,940 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 << 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