結果

問題 No.1848 Long Prefixes
ユーザー chineristACchineristAC
提出日時 2022-02-18 23:20:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,664 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 141,288 KB
最終ジャッジ日時 2024-06-29 09:53:09
合計ジャッジ時間 5,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
141,288 KB
testcase_01 AC 139 ms
116,020 KB
testcase_02 AC 165 ms
136,584 KB
testcase_03 AC 156 ms
140,612 KB
testcase_04 AC 140 ms
115,736 KB
testcase_05 AC 172 ms
135,652 KB
testcase_06 AC 145 ms
133,004 KB
testcase_07 AC 135 ms
115,184 KB
testcase_08 AC 156 ms
132,076 KB
testcase_09 AC 150 ms
139,576 KB
testcase_10 AC 144 ms
115,800 KB
testcase_11 AC 166 ms
140,676 KB
testcase_12 AC 144 ms
132,916 KB
testcase_13 AC 133 ms
111,980 KB
testcase_14 AC 166 ms
138,924 KB
testcase_15 AC 66 ms
72,064 KB
testcase_16 AC 58 ms
68,096 KB
testcase_17 AC 68 ms
74,112 KB
testcase_18 AC 58 ms
67,200 KB
testcase_19 AC 58 ms
67,328 KB
testcase_20 AC 44 ms
55,936 KB
testcase_21 AC 45 ms
55,936 KB
testcase_22 AC 45 ms
56,320 KB
testcase_23 AC 45 ms
56,064 KB
testcase_24 AC 45 ms
56,064 KB
testcase_25 AC 45 ms
55,808 KB
testcase_26 AC 45 ms
56,192 KB
testcase_27 AC 45 ms
55,936 KB
testcase_28 AC 45 ms
55,936 KB
testcase_29 AC 47 ms
55,936 KB
testcase_30 AC 47 ms
56,192 KB
testcase_31 AC 46 ms
56,192 KB
testcase_32 AC 44 ms
56,320 KB
testcase_33 AC 95 ms
90,932 KB
testcase_34 AC 115 ms
104,044 KB
testcase_35 AC 83 ms
86,144 KB
testcase_36 AC 94 ms
90,772 KB
testcase_37 AC 107 ms
99,920 KB
testcase_38 AC 108 ms
95,680 KB
testcase_39 AC 92 ms
90,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

def Z_algorithm(s):
    N = len(s)
    Z_alg = [0]*N

    Z_alg[0] = N
    i = 1
    j = 0
    while i < N:
        while i+j < N and s[j] == s[i+j]:
            j += 1
        Z_alg[i] = j
        if j == 0:
            i += 1
            continue
        k = 1
        while i+k < N and k + Z_alg[k]<j:
            Z_alg[i+k] = Z_alg[k]
            k += 1
        i += k
        j -= k
    return Z_alg

N = int(input())
A = li()
S = input()
S = [ord(s)-ord("a") for s in S]

B = [A[0]]
T = [S[0]]
for i in range(1,N):
    if T[-1]==S[i]:
        B[-1] += A[i]
    else:
        B.append(A[i])
        T.append(S[i])

n = len(B)
if n==1:
    exit(print((B[0]*(B[0]+1)//2) % mod))
ZB = Z_algorithm(B[1:])
ZT = Z_algorithm(T[1:])

imos = [B[i] for i in range(n)]
for i in range(1,n):
    imos[i] += imos[i-1]

res = 0
for i in range(n):
    if T[i]!=T[0]:
        continue
    
    if B[i] < B[0]:
        res += B[i] * (B[i]+1)//2
        continue
    
    res += B[0] * (B[0]-1)//2 + B[0] * (B[i]-B[0])
    if i==n-1:
        res += B[0]
        continue

    k_b,k_t = ZB[i],ZT[i]
    k = min(k_b,k_t)
    if i+k==n-1:
        res += B[0] + imos[n-1] - imos[i]
    else:
        if T[k+1]!=T[i+k+1]:
            res += B[0] + imos[i+k] - imos[i]
        else:
            res += B[0] + imos[i+k] - imos[i] + min(B[k+1],B[i+k+1])
    
print(res % mod)



        

0