結果

問題 No.1646 Avoid Palindrome
ユーザー umezoumezo
提出日時 2021-08-13 22:43:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,312 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 204,860 KB
実行使用メモリ 267,648 KB
最終ジャッジ日時 2024-10-03 20:54:23
合計ジャッジ時間 49,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 1,107 ms
252,288 KB
testcase_05 AC 1,101 ms
252,288 KB
testcase_06 AC 1,055 ms
243,712 KB
testcase_07 AC 1,073 ms
252,288 KB
testcase_08 AC 1,091 ms
254,720 KB
testcase_09 AC 1,030 ms
242,176 KB
testcase_10 AC 1,070 ms
248,192 KB
testcase_11 AC 1,036 ms
241,280 KB
testcase_12 AC 1,097 ms
251,904 KB
testcase_13 AC 1,106 ms
254,720 KB
testcase_14 AC 1,914 ms
247,552 KB
testcase_15 AC 1,954 ms
252,288 KB
testcase_16 AC 1,913 ms
245,888 KB
testcase_17 AC 2,033 ms
256,640 KB
testcase_18 AC 1,945 ms
249,984 KB
testcase_19 AC 1,925 ms
248,704 KB
testcase_20 AC 1,958 ms
250,624 KB
testcase_21 AC 2,004 ms
256,384 KB
testcase_22 AC 1,924 ms
247,680 KB
testcase_23 AC 1,995 ms
257,792 KB
testcase_24 AC 2,129 ms
267,520 KB
testcase_25 AC 2,091 ms
267,648 KB
testcase_26 AC 2,075 ms
267,648 KB
testcase_27 AC 2,095 ms
267,648 KB
testcase_28 AC 2,076 ms
267,648 KB
testcase_29 AC 547 ms
267,520 KB
testcase_30 AC 549 ms
267,520 KB
testcase_31 AC 551 ms
267,648 KB
testcase_32 AC 547 ms
267,520 KB
testcase_33 AC 551 ms
267,648 KB
testcase_34 AC 2,105 ms
267,648 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 WA -
testcase_40 AC 2 ms
6,820 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 AC 558 ms
267,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=998244353;
ll dp[50050][26][26];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  string s;
  cin>>n>>s;
  s='$'+s;
  
  if(n==1){
    if(s[1]=='?') cout<<26<<endl;
    else cout<<1<<endl;
    return 0;
  }
  
  int a=s[1]-'a',b=s[2]-'a';
  if(a>=0 && a<26 && b>=0 && b<26) dp[2][a][b]=1;
  else if(a>=0 && a<26){
    rep(i,26){
      if(i!=a) dp[2][a][i]=1;
    }
  }
  else if(b>=0 && b<26){
    rep(i,26){
      if(i!=b) dp[2][i][b]=1;
    }
  }
  else{
    rep(i,26){
      rep(j,26){
        if(i==j) continue;
        dp[2][i][j]=1;
      }
    }
  }
  
  for(int i=3;i<=n;i++){
    int c=s[i]-'a';
    if(s[i]>='a' && s[i]<='z'){
      rep(j,26){
        if(j==c) continue;
        rep(k,26){
          if(k==c) continue;
          dp[i][k][c]=(dp[i][k][c]+dp[i-1][j][k])%MOD;
        }
      }
    }
    else{
      rep(j,26){
        rep(k,26){
          rep(l,26){
            if(l==j || l==k) continue;
            dp[i][k][l]=(dp[i][k][l]+dp[i-1][j][k])%MOD;
          }
        }
      }
    }
  }
  ll ans=0;
  rep(i,26){
    rep(j,26) ans=(ans+dp[n][i][j])%MOD;
  }
  cout<<ans<<endl;
  
  return 0;
}
0