結果

問題 No.1845 Long Substrings
ユーザー tamatotamato
提出日時 2022-02-18 23:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 147,656 KB
最終ジャッジ日時 2024-06-29 09:54:08
合計ジャッジ時間 7,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
147,656 KB
testcase_01 AC 329 ms
137,856 KB
testcase_02 AC 351 ms
147,612 KB
testcase_03 AC 406 ms
147,264 KB
testcase_04 AC 380 ms
138,040 KB
testcase_05 AC 264 ms
131,464 KB
testcase_06 AC 324 ms
145,140 KB
testcase_07 AC 347 ms
137,648 KB
testcase_08 AC 372 ms
134,560 KB
testcase_09 AC 372 ms
144,764 KB
testcase_10 AC 292 ms
136,992 KB
testcase_11 AC 325 ms
131,484 KB
testcase_12 AC 370 ms
133,508 KB
testcase_13 AC 341 ms
135,904 KB
testcase_14 AC 364 ms
146,692 KB
testcase_15 AC 53 ms
71,552 KB
testcase_16 AC 49 ms
71,040 KB
testcase_17 AC 52 ms
72,192 KB
testcase_18 AC 51 ms
71,424 KB
testcase_19 AC 56 ms
77,568 KB
testcase_20 AC 31 ms
52,700 KB
testcase_21 AC 31 ms
52,352 KB
testcase_22 AC 31 ms
52,480 KB
testcase_23 AC 31 ms
52,480 KB
testcase_24 AC 31 ms
52,608 KB
testcase_25 AC 31 ms
52,480 KB
testcase_26 AC 31 ms
52,224 KB
testcase_27 AC 31 ms
52,352 KB
testcase_28 AC 31 ms
52,224 KB
testcase_29 AC 31 ms
52,608 KB
testcase_30 AC 31 ms
52,608 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 36 ms
52,864 KB
testcase_33 AC 33 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    S = input().rstrip('\n')

    nxt = [[-1] * 26 for _ in range(N + 1)]
    for i in range(N - 1, -1, -1):
        s = S[i]
        for j in range(26):
            nxt[i][j] = nxt[i + 1][j]
            if ord(s) - 97 == j:
                nxt[i][j] = i + 1

    dp0 = [0] * (N + 1)
    dp1 = [0] * (N + 1)
    dp0[0] = 1
    for i, s in enumerate(S):
        for c in range(26):
            j = nxt[i][c]
            if j == -1:
                continue
            a = A[j - 1]
            if i != 0:
                if ord(S[i - 1]) - 97 == c:
                    dp0[j] = (dp0[j] + (dp1[i] * (a - 1)) % mod) % mod
                    dp1[j] = (dp1[j] + dp1[i]) % mod
                else:
                    dp0[j] = (dp0[j] + ((dp0[i] + dp1[i]) * (a - 1)) % mod) % mod
                    dp1[j] = (dp1[j] + dp0[i] + dp1[i]) % mod
            else:
                dp0[j] = (dp0[j] + ((dp0[i] + dp1[i]) * (a - 1)) % mod)%mod
                dp1[j] = (dp1[j] + dp0[i] + dp1[i])%mod
    ans = 0
    for i in range(1, N + 1):
        ans = (ans + dp0[i])%mod
        ans = (ans + dp1[i])%mod
    print(ans)


if __name__ == '__main__':
    main()
0