結果

問題 No.1740 Alone 'a'
ユーザー inksamuraiinksamurai
提出日時 2021-11-12 21:50:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 1,853 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 173,516 KB
実行使用メモリ 33,144 KB
最終ジャッジ日時 2024-05-04 08:19:21
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 81 ms
33,144 KB
testcase_04 AC 80 ms
33,128 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 16 ms
8,704 KB
testcase_12 AC 66 ms
27,180 KB
testcase_13 AC 63 ms
25,856 KB
testcase_14 AC 78 ms
31,616 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 59 ms
24,928 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 11 ms
6,784 KB
testcase_19 AC 65 ms
27,136 KB
testcase_20 AC 38 ms
15,744 KB
testcase_21 AC 51 ms
20,224 KB
testcase_22 AC 56 ms
23,680 KB
testcase_23 AC 56 ms
23,552 KB
testcase_24 AC 37 ms
15,872 KB
testcase_25 AC 38 ms
15,872 KB
testcase_26 AC 50 ms
19,968 KB
testcase_27 AC 53 ms
21,248 KB
testcase_28 AC 48 ms
17,920 KB
testcase_29 AC 79 ms
31,584 KB
testcase_30 AC 55 ms
20,864 KB
testcase_31 AC 58 ms
24,576 KB
testcase_32 AC 44 ms
18,432 KB
testcase_33 AC 57 ms
24,064 KB
testcase_34 AC 13 ms
7,552 KB
testcase_35 AC 41 ms
17,536 KB
testcase_36 AC 35 ms
15,232 KB
testcase_37 AC 13 ms
7,680 KB
testcase_38 AC 30 ms
13,312 KB
testcase_39 AC 6 ms
5,376 KB
testcase_40 AC 19 ms
9,472 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