結果

問題 No.1845 Long Substrings
ユーザー 沙耶花沙耶花
提出日時 2022-02-18 21:58:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 4,521 ms
コンパイル使用メモリ 270,140 KB
実行使用メモリ 32,620 KB
最終ジャッジ日時 2024-06-29 08:51:20
合計ジャッジ時間 7,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
32,392 KB
testcase_01 AC 88 ms
32,620 KB
testcase_02 AC 139 ms
32,384 KB
testcase_03 AC 143 ms
32,512 KB
testcase_04 AC 95 ms
32,424 KB
testcase_05 AC 115 ms
29,440 KB
testcase_06 AC 130 ms
31,180 KB
testcase_07 AC 96 ms
32,384 KB
testcase_08 AC 137 ms
30,848 KB
testcase_09 AC 139 ms
31,256 KB
testcase_10 AC 79 ms
32,128 KB
testcase_11 AC 126 ms
29,568 KB
testcase_12 AC 134 ms
30,336 KB
testcase_13 AC 92 ms
31,488 KB
testcase_14 AC 143 ms
32,000 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001



int main(){
	
	int n;
	cin>>n;
	vector<long long> a(n);
	rep(i,n)cin>>a[i];
	
	string s;
	cin>>s;
	
	vector nxt(n+1,vector<int>(26,Inf));
	vector<int> cur(26,Inf);
	for(int i=n-1;i>=0;i--){
		nxt[i] = cur;
		cur[s[i]-'a'] = i;
	}
	
	vector<mint> dp(n+1,0);
	set<char> S;
	rep(i,n){
		if(!S.count(s[i]))dp[i] = 1;
		S.insert(s[i]);
	}
	mint ans = 0;
	
	rep(i,n){
		ans += dp[i] * (a[i]);
		rep(j,26){
			if(nxt[i][j]==Inf)continue;
			if(j==s[i]-'a'){
				dp[nxt[i][j]] += dp[i];
			}
			else{
				dp[nxt[i][j]] += dp[i] * a[i];
			}
		}
	}
	
	cout<<ans.val()<<endl;
	
	
	
	return 0;
}
0