結果

問題 No.1845 Long Substrings
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-02-18 22:13:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 1,520 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 171,552 KB
最終ジャッジ日時 2024-06-29 09:05:16
合計ジャッジ時間 8,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
165,596 KB
testcase_01 AC 367 ms
161,976 KB
testcase_02 AC 390 ms
166,232 KB
testcase_03 AC 420 ms
171,552 KB
testcase_04 AC 414 ms
161,252 KB
testcase_05 AC 282 ms
154,744 KB
testcase_06 AC 345 ms
165,448 KB
testcase_07 AC 401 ms
161,804 KB
testcase_08 AC 416 ms
156,964 KB
testcase_09 AC 447 ms
165,416 KB
testcase_10 AC 290 ms
161,560 KB
testcase_11 AC 365 ms
154,688 KB
testcase_12 AC 397 ms
153,704 KB
testcase_13 AC 395 ms
160,688 KB
testcase_14 AC 405 ms
165,612 KB
testcase_15 AC 60 ms
67,584 KB
testcase_16 AC 58 ms
66,560 KB
testcase_17 AC 59 ms
66,816 KB
testcase_18 AC 66 ms
69,888 KB
testcase_19 AC 65 ms
69,248 KB
testcase_20 AC 37 ms
52,480 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 37 ms
52,224 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 36 ms
51,712 KB
testcase_26 AC 38 ms
52,608 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 38 ms
52,224 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 39 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

部分列dpを思い出せ…

dp[i][flag]
= i番目の区間の文字を1つ以上使用しており、
 最後の文字を使っているかどうかのflagが flagの時の場合の数

とすれば解ける
flagが Falseなら同じ文字の区間には飛べない

"""

import sys
from sys import stdin

mod = 10**9+7

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))
S = list(stdin.readline()[:-1])

A.append(1)
S.append("{")

lastinds = [None] * 27
indlis = []

for i in range(N,-1,-1):

    indlis.append( tuple(lastinds) )
    lastinds[ ord(S[i]) - ord("a") ] = i

indlis.reverse()
#print (indlis)

dp = [[0,0] for i in range(N+1)]
startend = [None] * 27

for i in range(N):

    #自分スタートの処理
    if startend[ord(S[i]) - ord("a")] == None:
        startend[ord(S[i]) - ord("a")] = 1
        dp[i][0] += A[i]-1
        dp[i][1] += 1

    #推移
    for k in range(27):
        nexind = indlis[i][k]
        if nexind == None:
            continue

        if k != ord(S[i])-ord('a'):
            dp[nexind][0] += dp[i][0] * (A[nexind]-1)
            dp[nexind][1] += dp[i][0]
            dp[nexind][0] += dp[i][1] * (A[nexind]-1)
            dp[nexind][1] += dp[i][1]
        else:
            #dp[nexind][0] += dp[i][0] * (A[nexind]-1)
            #dp[nexind][1] += dp[i][0]
            dp[nexind][0] += dp[i][1] * (A[nexind]-1)
            dp[nexind][1] += dp[i][1]

        dp[nexind][0] %= mod
        dp[nexind][1] %= mod

#print (dp)
print (dp[-1][1] % mod)
0