結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,672 KB
testcase_01 AC 4 ms
9,588 KB
testcase_02 AC 5 ms
9,728 KB
testcase_03 AC 142 ms
28,656 KB
testcase_04 AC 143 ms
28,656 KB
testcase_05 AC 7 ms
10,368 KB
testcase_06 AC 7 ms
10,112 KB
testcase_07 AC 4 ms
9,728 KB
testcase_08 AC 4 ms
9,684 KB
testcase_09 AC 4 ms
9,600 KB
testcase_10 AC 5 ms
9,720 KB
testcase_11 AC 23 ms
13,212 KB
testcase_12 AC 84 ms
24,960 KB
testcase_13 AC 47 ms
24,064 KB
testcase_14 AC 95 ms
27,640 KB
testcase_15 AC 5 ms
9,804 KB
testcase_16 AC 75 ms
23,448 KB
testcase_17 AC 5 ms
9,728 KB
testcase_18 AC 16 ms
12,032 KB
testcase_19 AC 83 ms
25,088 KB
testcase_20 AC 44 ms
17,824 KB
testcase_21 AC 59 ms
20,624 KB
testcase_22 AC 69 ms
22,836 KB
testcase_23 AC 71 ms
22,784 KB
testcase_24 AC 44 ms
17,792 KB
testcase_25 AC 46 ms
17,792 KB
testcase_26 AC 58 ms
20,480 KB
testcase_27 AC 38 ms
21,344 KB
testcase_28 AC 53 ms
19,072 KB
testcase_29 AC 96 ms
27,716 KB
testcase_30 AC 39 ms
20,992 KB
testcase_31 AC 73 ms
23,296 KB
testcase_32 AC 54 ms
19,408 KB
testcase_33 AC 72 ms
23,040 KB
testcase_34 AC 12 ms
12,492 KB
testcase_35 AC 51 ms
18,944 KB
testcase_36 AC 42 ms
17,408 KB
testcase_37 AC 18 ms
12,580 KB
testcase_38 AC 36 ms
16,216 KB
testcase_39 AC 8 ms
10,760 KB
testcase_40 AC 23 ms
13,696 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