結果

問題 No.1740 Alone 'a'
ユーザー inksamuraiinksamurai
提出日時 2021-11-12 21:50:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,853 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 173,976 KB
実行使用メモリ 33,164 KB
最終ジャッジ日時 2024-11-25 18:06:45
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 94 ms
33,164 KB
testcase_04 AC 93 ms
33,072 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 19 ms
8,704 KB
testcase_12 AC 76 ms
27,248 KB
testcase_13 AC 72 ms
25,856 KB
testcase_14 AC 89 ms
31,488 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 69 ms
24,908 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 14 ms
6,820 KB
testcase_19 AC 77 ms
27,236 KB
testcase_20 AC 44 ms
15,616 KB
testcase_21 AC 60 ms
20,352 KB
testcase_22 AC 65 ms
23,776 KB
testcase_23 AC 65 ms
23,680 KB
testcase_24 AC 45 ms
15,744 KB
testcase_25 AC 46 ms
16,000 KB
testcase_26 AC 59 ms
19,968 KB
testcase_27 AC 66 ms
21,296 KB
testcase_28 AC 52 ms
17,920 KB
testcase_29 AC 91 ms
31,620 KB
testcase_30 AC 62 ms
20,864 KB
testcase_31 AC 68 ms
24,448 KB
testcase_32 AC 54 ms
18,372 KB
testcase_33 AC 67 ms
24,192 KB
testcase_34 AC 15 ms
7,552 KB
testcase_35 AC 51 ms
17,664 KB
testcase_36 AC 43 ms
15,232 KB
testcase_37 AC 16 ms
7,808 KB
testcase_38 AC 36 ms
13,312 KB
testcase_39 AC 7 ms
6,820 KB
testcase_40 AC 22 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define rep(i,n) for(int i=0;i<n;i++)
#define crep(i,x,n) for(int i=x;i<n;i++)
#define drep(i,n) for(int i=n-1;i>=0;i--)
#define vec(...) vector<__VA_ARGS__>
#define _3pPbCt8 ios_base::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef long double ld;
using pii=pair<int,int>;
using vi=vector<int>;

//snuke's modular int
template <ll mod>
struct modularint{
	ll x;
	modularint(ll x=0):x(x%mod){}
	modularint& operator+=(const modularint a){
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	modularint& operator-=(const modularint a){
		if ((x += mod-a.x) >= mod) x -= mod;
		return *this;
	}
	modularint& operator*=(const modularint a){
		(x *= a.x) %= mod;
		return *this;
	}
	modularint operator+(const modularint a)const{
		modularint res(*this);
		return res+=a;
	}
	modularint operator-(const modularint a)const{
		modularint res(*this);
		return res-=a;
	}
	modularint operator*(const modularint a)const{
		modularint res(*this);
		return res*=a;
	}
	modularint pow(ll n)const{
		modularint res=1,x(*this);
		while(n){
			if(n&1)res*=x;
			x*=x;
			n>>=1;
		}
		return res;
	}
	modularint inv()const{
		return pow(mod-2);
	}
};
using mint=modularint<998244353>;

int main(){
_3pPbCt8;
	int n;
	cin>>n;
	string s;
	cin>>s;
	vec(vec(vec(mint))) dp(n+1,vec(vec(mint))(2,vec(mint)(3,0)));
	// len,isok,seb
	dp[0][0][1]=1;
	rep(i,n){
		int x=s[i]-'a';
		rep(ch,26){
			rep(t,3){
				int net=t;
				if(t==1){
					if(x>ch) net=0;
					if(x<ch) net=2;
				}
				if(ch==0) dp[i+1][1][net]+=dp[i][0][t];
				else{
					dp[i+1][1][net]+=dp[i][1][t];
					dp[i+1][0][net]+=dp[i][0][t];
				}
			}
		}
	}
	mint ans=dp[n][1][0];
	cout<<ans.x<<"\n";
//	
	return 0;
}
0