結果

問題 No.1740 Alone 'a'
ユーザー mortalmortal
提出日時 2022-01-18 21:04:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 166,788 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-05-02 19:29:54
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,600 KB
testcase_01 AC 6 ms
9,600 KB
testcase_02 AC 7 ms
9,728 KB
testcase_03 AC 138 ms
28,544 KB
testcase_04 AC 136 ms
28,544 KB
testcase_05 AC 10 ms
10,240 KB
testcase_06 AC 9 ms
10,240 KB
testcase_07 AC 7 ms
9,728 KB
testcase_08 AC 7 ms
9,600 KB
testcase_09 AC 6 ms
9,728 KB
testcase_10 AC 6 ms
9,600 KB
testcase_11 AC 23 ms
13,056 KB
testcase_12 AC 81 ms
25,088 KB
testcase_13 AC 47 ms
24,192 KB
testcase_14 AC 93 ms
27,776 KB
testcase_15 AC 6 ms
9,856 KB
testcase_16 AC 72 ms
23,552 KB
testcase_17 AC 7 ms
9,856 KB
testcase_18 AC 18 ms
12,032 KB
testcase_19 AC 81 ms
24,960 KB
testcase_20 AC 46 ms
17,792 KB
testcase_21 AC 60 ms
20,608 KB
testcase_22 AC 70 ms
22,784 KB
testcase_23 AC 69 ms
22,784 KB
testcase_24 AC 45 ms
17,920 KB
testcase_25 AC 45 ms
17,920 KB
testcase_26 AC 57 ms
20,480 KB
testcase_27 AC 39 ms
21,248 KB
testcase_28 AC 53 ms
19,072 KB
testcase_29 AC 96 ms
27,648 KB
testcase_30 AC 38 ms
20,992 KB
testcase_31 AC 71 ms
23,296 KB
testcase_32 AC 53 ms
19,456 KB
testcase_33 AC 71 ms
22,912 KB
testcase_34 AC 15 ms
12,416 KB
testcase_35 AC 52 ms
18,944 KB
testcase_36 AC 43 ms
17,408 KB
testcase_37 AC 20 ms
12,416 KB
testcase_38 AC 38 ms
16,256 KB
testcase_39 AC 11 ms
10,752 KB
testcase_40 AC 26 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define mod 998244353
ll dp[200005][2][2];
string s;
int n;
ll solve(int pos,bool used,bool small){
	if(pos>=n){
		return (ll)(used&&small);

	}
	if(dp[pos][used][small]!=-1)
		return dp[pos][used][small];
	ll ans=0;

	char r=small?'z':s[pos];
	char l='a';
	if(used)
		l++;
	for(char c=l;c<=r;c++){
		ans+=solve(pos+1,(c=='a')|used,small|(c<r));
		ans%=mod;
	}
	return dp[pos][used][small]=ans;



}

int main() {
	
	int t=1;
	//cin>>t;
	assert(1<=t&&t<=10);
	while(t--){
		cin >> n >> s;
		assert(1<=n&&n<=200000);
		assert(s.size()==n);
		for(int i=0;i<n;i++){
			assert(s[i]>='a'&&s[i]<='z');
		}
		memset(dp,-1,sizeof(dp));
		cout<<solve(0,0,0)<<"\n";

	}
	
	
	
}
0