結果

問題 No.1845 Long Substrings
ユーザー mkawa2mkawa2
提出日時 2023-10-30 18:54:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 1,322 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 191,960 KB
最終ジャッジ日時 2024-09-25 17:20:34
合計ジャッジ時間 8,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
189,380 KB
testcase_01 AC 325 ms
184,536 KB
testcase_02 AC 322 ms
189,892 KB
testcase_03 AC 335 ms
189,228 KB
testcase_04 AC 368 ms
184,688 KB
testcase_05 AC 275 ms
174,896 KB
testcase_06 AC 313 ms
191,960 KB
testcase_07 AC 322 ms
184,520 KB
testcase_08 AC 330 ms
181,772 KB
testcase_09 AC 332 ms
191,732 KB
testcase_10 AC 289 ms
184,060 KB
testcase_11 AC 318 ms
175,448 KB
testcase_12 AC 329 ms
180,460 KB
testcase_13 AC 322 ms
182,156 KB
testcase_14 AC 342 ms
191,032 KB
testcase_15 AC 54 ms
66,816 KB
testcase_16 AC 52 ms
65,792 KB
testcase_17 AC 55 ms
66,304 KB
testcase_18 AC 54 ms
65,920 KB
testcase_19 AC 55 ms
67,584 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 37 ms
52,352 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 37 ms
52,096 KB
testcase_25 AC 38 ms
52,736 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 38 ms
51,840 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 38 ms
52,348 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 38 ms
52,352 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

n = II()
aa = LI()
cc = [ord(c)-97 for c in SI()]
nxt = [[-1]*26 for _ in range(n)]
for i in range(n-1)[::-1]:
    nxt[i] = nxt[i+1][:]
    nxt[i][cc[i+1]] = i+1
# p2D(nxt)

ans = 0
dp = [0]*n
first = [1]*26
for i, c in enumerate(cc):
    pre = dp[i]
    if first[c]:
        pre += 1
        first[c] = 0
    ans += pre*aa[i]%md
    ans %= md
    for nc in range(26):
        if nxt[i][nc] == -1: continue
        j = nxt[i][nc]
        if c == nc:
            dp[j] += pre
        else:
            dp[j] += pre*aa[i]%md
        dp[j] %= md

print(ans)
0