結果

問題 No.1848 Long Prefixes
ユーザー 👑 potato167potato167
提出日時 2021-12-07 14:58:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 126,412 KB
最終ジャッジ日時 2024-06-29 07:58:07
合計ジャッジ時間 6,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
126,284 KB
testcase_01 AC 115 ms
111,232 KB
testcase_02 AC 153 ms
126,356 KB
testcase_03 AC 156 ms
126,412 KB
testcase_04 AC 111 ms
111,232 KB
testcase_05 AC 165 ms
107,264 KB
testcase_06 AC 135 ms
104,064 KB
testcase_07 AC 112 ms
111,488 KB
testcase_08 AC 137 ms
104,320 KB
testcase_09 AC 141 ms
107,264 KB
testcase_10 AC 141 ms
111,824 KB
testcase_11 AC 146 ms
107,136 KB
testcase_12 AC 137 ms
103,936 KB
testcase_13 AC 111 ms
111,232 KB
testcase_14 AC 146 ms
107,392 KB
testcase_15 AC 53 ms
64,256 KB
testcase_16 AC 47 ms
62,848 KB
testcase_17 AC 52 ms
64,384 KB
testcase_18 AC 48 ms
61,568 KB
testcase_19 AC 46 ms
62,080 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 38 ms
52,480 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 37 ms
51,584 KB
testcase_28 AC 36 ms
51,968 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 38 ms
52,480 KB
testcase_33 AC 89 ms
94,464 KB
testcase_34 AC 106 ms
103,552 KB
testcase_35 AC 62 ms
77,184 KB
testcase_36 AC 88 ms
95,232 KB
testcase_37 AC 102 ms
101,632 KB
testcase_38 AC 97 ms
98,432 KB
testcase_39 AC 89 ms
95,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def z_algo(p):
	n=len(p)
	Z=[0]*n
	Z[0]=n
	i=1
	j=0
	while i<n:
		while i+j<n and p[j]==p[i+j]:
			j+=1
		Z[i]=j
		if j==0:
			i+=1
			continue
		k=1
		while k<j and k+Z[k]<j:
			Z[i+k]=Z[k]
			k+=1
		i+=k
		j-=k
	return Z

N=int(input())
A=list(map(int,input().split()))
S=input()
M=10**9+7
half=(M+1)//2
p=[('#',100)]*(N)
cum_sum=[0]*(N+1)
for i in range(N-1):
	p[i]=(S[i+1],A[i+1])
	cum_sum[i+1]=(cum_sum[i]+A[i+1])%M
cum_sum[N]=cum_sum[N-1]
Z=z_algo(p)
ans=0
for i in range(N):
	if S[i]!=S[0]:
		continue
	if A[i]<A[0]:
		ans+=((A[i]+1)*A[i])//2
		ans%=M 
	else:
		ans+=(A[0]*(A[i]-A[0]))
		ans%=M
		ans+=(A[0]*(A[0]+1))//2
		ans%=M
		ans+=cum_sum[Z[i]]
		if i+Z[i]+1<N and S[i+1+Z[i]]==S[1+Z[i]]:
			ans+=min(A[i+1+Z[i]],A[1+Z[i]])
		ans%=M
print(ans)

0